Skip to content
This repository has been archived by the owner on Dec 13, 2023. It is now read-only.

Bump pre-commit from 3.5.0 to 3.6.0 #60

Bump pre-commit from 3.5.0 to 3.6.0

Bump pre-commit from 3.5.0 to 3.6.0 #60

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup python
uses: actions/setup-python@v4
with:
python-version: "3.11.x"
- name: setup poetry and pre-commit
run: |
pip install poetry
- name: setup application
run: |
poetry config virtualenvs.in-project true
poetry install --no-interaction
- name: run tests
run: |
poetry run pytest
- name: run linter
run: |
poetry run pre-commit run flake8 --all-files