forked from bogdanb/hpmor
-
-
Notifications
You must be signed in to change notification settings - Fork 57
39 lines (30 loc) · 897 Bytes
/
check-pr.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
# This workflow performs chapter quality (known issues) and code quality checks upon new commits and PRs.
name: Check new commits and PRs
on:
workflow_dispatch:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
check:
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
persist-credentials: false
fetch-depth: 1 # 0 if you want to push to repo
- name: Touch requirements.txt for pip caching
run: touch requirements.txt
- name: Python set up
uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: "pip"
- name: Check of chapters for known issues
run: python3 scripts/check_chapters.py
- name: Check pre-commit tests
uses: pre-commit/action@v3.0.1