-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (42 loc) · 1.51 KB
/
test.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
44
45
46
47
48
49
50
51
name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
container:
image: python:3.10
steps:
- uses: actions/checkout@v4
- name: Install dependencies.
run : |
python -m pip install typeguard -r requirements/requirements.python.test.txt
- name: Run tests.
run : |
python -m pytest tests -s --log-cli-level=info
install-as-package-and-test:
runs-on: [ubuntu-latest]
container:
image: python:${{ matrix.version }}
strategy:
matrix:
version: ['3.10', '3.12']
steps:
- name: Install as package.
run : |
pip install git+https://github.com/uliegecsm/system-helpers.git@${{ github.sha }}
- name: Test 'apt' helpers as CLI directly.
run : |
apt-helpers install-packages --update --clean --upgrade --packages jq
- name: Test 'update-alternatives' helpers as CLI directly.
run : |
update-alternatives-helpers --help
- name: Check that we can import packages in Python.
run : |
python -c "from system_helpers.apt import install as u;print(u)"
python -c "from system_helpers.update_alternatives import alternatives as u;print(u)"