Skip to content

Update dependencies (major) (#179) #9

Update dependencies (major) (#179)

Update dependencies (major) (#179) #9

Workflow file for this run

---
name: pipeline
on:
push:
branches:
- main
jobs:
lint_and_test_code:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.0.0
- name: Set up Python
uses: actions/setup-python@v4.7.0
with:
python-version: 3.11.4
- name: Install build & test dependencies
run: |-
pip3 install --disable-pip-version-check --progress-bar off poetry pre-commit
- name: Build & install
run: poetry build && poetry install
- name: Run pre-commit hooks on all files
run: poetry run pre-commit run --all-files --show-diff-on-failure
- name: Run tests
run: poetry run pytest --full-trace
- uses: actions/upload-artifact@v3.1.3
with:
path: dist