Skip to content

Create codespell_and_ruff.yml #43

Create codespell_and_ruff.yml

Create codespell_and_ruff.yml #43

Workflow file for this run

on:
push:
pull_request:
jobs:
build:
# ubuntu-22 doesnt support Python 3.5 and 3.6
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
python-version: [3.5, 3.6, 3.7, 3.8, 3.9, '3.10']
name: main
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: clean .coverage
shell: bash
run: find . -name .coverage -delete
- name: Run tox with tox-gh-actions
uses: ymyzk/run-tox-gh-actions@main