Skip to content

Update GHA

Update GHA #2

Workflow file for this run

name: Codebase lint
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
PYTHON_VERSION: 3.11
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: "pip"
- name: Install tox
run: pip install tox
- name: Test
run: tox -e lint