[Fix] Bugs where cleanup code is not executed correctly when bot exits #167
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
| name: Test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| paths: | |
| - '**.py' | |
| - '!docs/**' | |
| - '!examples/**' | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ${{ matrix.os }} | |
| concurrency: | |
| group: test-${{ github.ref }}-${{ matrix.os }}-${{ matrix.python-version }} | |
| cancel-in-progress: true | |
| strategy: | |
| matrix: | |
| python-version: ['3.11', '3.12', '3.13'] | |
| os: [ubuntu-latest, windows-latest, macos-latest] | |
| fail-fast: false | |
| env: | |
| OS: ${{ matrix.os }} | |
| PYTHON_VERSION: ${{ matrix.python-version }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Python | |
| uses: ./.github/actions/setup-python | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install the project | |
| run: uv sync --all-extras --all-packages --group dev --group test | |
| shell: bash | |
| - name: Run pytest | |
| run: uv run pytest -n auto --cov-report xml | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v4 | |
| with: | |
| env_vars: OS,PYTHON_VERSION | |
| fail_ci_if_error: true | |
| files: ./coverage.xml | |
| flags: unittests | |
| token: ${{ secrets.CODECOV_TOKEN }} |