Skip to content

Merge pull request #21 from routablehq/DEV-16665-dont-allow-tasks-to-… #38

Merge pull request #21 from routablehq/DEV-16665-dont-allow-tasks-to-…

Merge pull request #21 from routablehq/DEV-16665-dont-allow-tasks-to-… #38

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: "3.11"
- name: Install dependencies
run: |
pip install -r requirements-dev.txt
- name: Lint
uses: pre-commit/[email protected]
- name: Test with pytest
run: |
pytest