Skip to content

Fix: Removed commented out line in pyproject.toml and setup project i… #177

Fix: Removed commented out line in pyproject.toml and setup project i…

Fix: Removed commented out line in pyproject.toml and setup project i… #177

Workflow file for this run

name: Staged CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.12'
- name: Run Composite Action to Install Packages
uses: ./.github/actions
- name: Run tests
run: make test
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- name: Run Composite Action to Install Packages
uses: ./.github/actions
- name: Run Pre-commit
run: |
poetry install --no-root --all-extras
poetry run pre-commit run --all-files