Skip to content

Merge pull request #480 from ElcanoTek/bradflaugher-patch-2 #470

Merge pull request #480 from ElcanoTek/bradflaugher-patch-2

Merge pull request #480 from ElcanoTek/bradflaugher-patch-2 #470

Workflow file for this run

name: Run Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install Nox
run: |
python -m pip install --upgrade pip
pip install nox
- name: Run lint and tests
run: nox -s lint tests