Skip to content

Update dependency prettier to v3 #28

Update dependency prettier to v3

Update dependency prettier to v3 #28

Workflow file for this run

name: tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v3
- name: Run pre-commit
uses: pre-commit/action@v3.0.0
build:
runs-on: ubuntu-latest
needs: [lint]
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- uses: actions/checkout@v3
- name: Test with tox
run: |
pip install tox
tox
- uses: codecov/codecov-action@v3
if: ${{ matrix.python-version == '3.11' }}