Skip to content

Merge pull request #149 from bird-house/dependabot/pip/{{cookiecutter… #114

Merge pull request #149 from bird-house/dependabot/pip/{{cookiecutter…

Merge pull request #149 from bird-house/dependabot/pip/{{cookiecutter… #114

Workflow file for this run

name: Build ⚙️
on:
push:
branches:
- master
pull_request:
concurrency:
# For a given workflow, if we push to the same branch, cancel all previous builds on that branch except on main.
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- tox-env: py310
python-version: "3.10"
- tox-env: py311
python-version: "3.11"
- tox-env: py312
python-version: "3.12"
- tox-env: py313
python-version: "3.13"
- tox-env: pypy311
python-version: "pypy-3.11"
steps:
- name: Harden Runner
uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0
with:
disable-sudo: true
egress-policy: audit
- name: Checkout Repository
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
persist-credentials: false
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install CI dependencies
run: |
python -m pip install --require-hashes -r CI/requirements_ci.txt
- name: Test with pytest and tox ⚙️
run: |
python -m tox -e ${{ matrix.tox-env }}