Skip to content

github actions corrections to use appropriate pyproject files #7

github actions corrections to use appropriate pyproject files

github actions corrections to use appropriate pyproject files #7

Workflow file for this run

name: Trunk Check
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
trunk-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Run pre-commit checks
run: |
pre-commit run --all-files
- name: Run linters
run: |
make lint