-
Notifications
You must be signed in to change notification settings - Fork 5
41 lines (37 loc) · 1.03 KB
/
checks.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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