Skip to content

Switch back to single quotes #16

Switch back to single quotes

Switch back to single quotes #16

Workflow file for this run

# https://docs.github.com/en/actions/reference
# https://docs.github.com/en/actions/guides/building-and-testing-python
name: Check
on:
push:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.x'
- run: pip install ruff
- run: make lint
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.x'
- run: pip install pytest
- run: make test