Skip to content

chore(deps): update actions/checkout action to v5 #24

chore(deps): update actions/checkout action to v5

chore(deps): update actions/checkout action to v5 #24

Workflow file for this run

name: PR Checks
on:
pull_request:
branches: [master]
types: [opened, synchronize, reopened, updated]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Run pre-commit
run: make pre-commit
- name: Run tests
run: make test