Deprecate pages module and update docs and tests #8
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: ci | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
py: ["3.12"] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: eifinger/setup-rye@v3 | |
- run: rye pin ${{ matrix.py }} | |
- run: | | |
rye sync | |
# [[ -n $(git diff --stat requirements.lock) ]] && exit 1 | |
- run: rye fmt --check $( find src/tseda -name "*.py" | grep -v _version.py ) | |
- run: rye lint src | |
- run: rye run check | |
- run: rye run test |