-
Notifications
You must be signed in to change notification settings - Fork 2
34 lines (27 loc) · 1022 Bytes
/
python-ci.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
name: 🐍 Python CI
on:
push:
branches: [main]
pull_request: {}
jobs:
build:
# Available versions:
# https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
with:
submodules: "recursive"
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version-file: ".python-version"
architecture: "x64"
cache: "pip"
cache-dependency-path: "context/requirements*.txt"
- name: Install python main dependencies
run: PIP_CONSTRAINT=context/constraints.txt pip install -r context/requirements.txt --use-deprecated=legacy-resolver
- name: Install python dev dependencies
run: PIP_CONSTRAINT=context/constraints.txt pip install -r context/requirements-dev.txt --use-deprecated=legacy-resolver
- name: Run test script
run: etc/test/test-python.sh