Skip to content

Updates

Updates #41

Workflow file for this run

name: lint
on:
push:
branches:
- master
pull_request:
jobs:
run:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.8", "3.10"]
timeout-minutes: 30
steps:
- uses: actions/checkout@master
- uses: actions/setup-python@master
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install tox
- name: Code style check
run: |
tox -e ruff-format
tox -e ruff-check
- name: Check copyright
run: tox -e check-copyright