Skip to content

chore: release v1.1.1 #31

chore: release v1.1.1

chore: release v1.1.1 #31

Workflow file for this run

name: Tests
on:
push:
branches-ignore:
- main
workflow_dispatch:
jobs:
quick-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"

Check failure on line 20 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

You have an error in your yaml syntax on line 20
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Run quick checks
run: |
ruff check src/antipasta tests
black --check src/antipasta tests
mypy src/antipasta tests
pytest -v