deps(deps): bump certifi from 2026.1.4 to 2026.6.17 #234
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: ci | |
| "on": | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: set up python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| python -m pip install -r requirements.txt | |
| python -m pip install ruff | |
| - name: run ruff check | |
| run: | | |
| python -m ruff check . | |
| - name: run ruff format check | |
| run: | | |
| python -m ruff format --check . | |
| - name: run tests | |
| run: | | |
| python run_tests.py | |
| - name: create issue on failure | |
| if: failure() | |
| uses: actions/github-script@v8 | |
| with: | |
| github-token: ${{ secrets.ISSUE_TOKEN }} | |
| script: | | |
| github.rest.issues.create({ | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| title: 'CI failed on ${{ matrix.python-version }}', | |
| body: 'CI failed for Python ${{ matrix.python-version }}. ' + | |
| 'See the workflow run for details.', | |
| labels: ['ci-failure','bug'] | |
| }) |