Wasting Module #2248
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: Checks | |
on: | |
push: | |
branches: "master" | |
tags: ["*"] | |
pull_request: | |
schedule: | |
- cron: 0 0 * * * | |
# Force cancellation of in-progress workflows if changes are made to | |
# the HEAD of the branch the workflow is currently running on. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
# master branch will be allowed to have pending jobs | |
# https://stackoverflow.com/a/70972844 | |
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }} | |
jobs: | |
check: | |
name: Run checks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
lfs: false | |
- name: Cache tox | |
uses: actions/cache@v4 | |
with: | |
path: .tox | |
key: tox-${{hashFiles('requirements/*.txt', 'tox.ini')}} | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
- name: Install tox | |
run: python3 -m pip install tox | |
- name: Run checks with tox | |
run: tox -v -e check |