Refactoring the periodic broadcaster and added warn + error + test #25
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: model | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
dependency-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: cache poetry | |
uses: actions/cache@v4 | |
with: | |
path: ~/.local | |
key: ${{ runner.os }}-poetry | |
- name: install poetry | |
run: pip install poetry | |
- name: install package | |
run: poetry install --with dev | |
- name: run deptry | |
run: | | |
poetry run deptry . --per-rule-ignores "DEP001=pyrenew,DEP003=pytest" |