-
Notifications
You must be signed in to change notification settings - Fork 47
33 lines (33 loc) · 1.06 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
name: checks
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: sudo apt-get update -y
- run: sudo apt-get install -y python3-pip python3-setuptools
- run: sudo pip3 install black pyflakes
- run: make format-check
- run: make lint
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
image:
# test on Fedora Rawhide
- quay.io/fedora/fedora:rawhide
# test on the latest stable release of Fedora
- quay.io/fedora/fedora:latest
# test on the stable release of Centos stream 8
- quay.io/centos/centos:stream8
# test on the latest stable release of Centos stream
- quay.io/centos/centos:stream9
container:
image: ${{ matrix.image }}
steps:
- uses: actions/checkout@v4
- run: rpm -q python3 || dnf install --nogpgcheck -y python3
- run: rpm -q git || dnf install --nogpgcheck -y git
- run: python3 -m unittest -v tests/test_unit.py