weekly #65
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: weekly | |
on: | |
schedule: | |
- cron: 11 4 * * 0 | |
jobs: | |
weekly: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.11-dev", "3.12-dev"] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
make requirements | |
- name: Lint | |
run: | | |
make lint | |
- name: Format | |
run: | | |
make format && git diff --quiet HEAD | |
- name: Type check | |
run: | | |
make type-check | |
- name: Test | |
run: | | |
make test | |
# vim: sw=2 |