-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (35 loc) · 970 Bytes
/
check.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
42
43
name: Check and Test Python Project
on:
workflow_dispatch:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
persist-credentials: false
fetch-depth: 1 # 0 if you want to push to repo
- name: Python set up
uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: "pip"
- name: Run pre-commit hooks
uses: pre-commit/[email protected]
- name: Install dependencies
if: ${{ hashFiles('requirements.txt') != '' }}
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Install and run pytest
run: |
cp src/rememberthemilk.toml.example src/rememberthemilk.toml
pip install pytest
pytest