Skip to content

Update github actions #277

Update github actions

Update github actions #277

Workflow file for this run

name: Lint
on:
- push
- pull_request
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Update pip and install dependencies
run: |
pip install --upgrade pip setuptools wheel
pip install tox
- name: Run tox check
run: tox -e check