⬆️ Bump virtualenv from 21.2.0 to 21.2.1 #3582
Workflow file for this run
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: build | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| # Minimum supported + newest stable on actions/setup-python. When 3.16 is published on runners, replace 3.14 with 3.16. | |
| python-version: ["3.10", "3.14"] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6.2.0 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - uses: Gr1N/setup-poetry@v9 | |
| - run: poetry --version | |
| - name: Set up cache | |
| uses: actions/cache@v5.0.4 | |
| with: | |
| path: .venv | |
| key: venv-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('poetry.lock') }} | |
| - name: Install dependencies | |
| run: | | |
| poetry config virtualenvs.in-project true | |
| poetry install | |
| - name: Run style checks | |
| run: | | |
| make check-codestyle | |
| - name: Run tests | |
| run: | | |
| make test | |
| - name: Run security checks | |
| run: | | |
| make check-safety |