feat(worker-settings): add worker configuration management in setting… #205
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # this is an autogenerated file, do not edit it directly or your changes might be lost. | |
| name: Python Tests | |
| on: | |
| push: | |
| branches: | |
| - dev | |
| - test | |
| jobs: | |
| test: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.11", "3.12", "3.13"] | |
| os: [ubuntu-latest, windows-latest, macOS-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v3 | |
| - name: Install Package | |
| uses: ./.github/actions/install_package | |
| with: | |
| python_version: ${{ matrix.python-version }} | |
| - name: Run Tests | |
| run: uv run pytest |