-
Notifications
You must be signed in to change notification settings - Fork 28
73 lines (66 loc) · 1.89 KB
/
pipelines.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
name: CI
on:
pull_request:
branches: [ master ]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Lint with flake8
run: |
tox -vv -eflake8
- name: Lint with pep8
run: |
tox -vv -epep8
container:
needs: lint
runs-on: ubuntu-latest
strategy:
matrix:
fedora-release: [37, 38]
steps:
- uses: actions/checkout@v4
# - name: Lint with pylint fedora:${{ matrix.fedora-release }}
# run: |
# docker pull fedora:${{ matrix.fedora-release }}
# docker run \
# -v ${GITHUB_WORKSPACE}:/root/src/ fedora:${{ matrix.fedora-release }} \
# /bin/bash -c "\
# dnf -y install \
# freeipa-server \
# freeipa-server-trust-ad \
# tox \
# python3-pip \
# python3-pytest \
# ; \
# python3 -m pip install --user --ignore-installed 'pylint ~= 2.15.5' ; \
# cd /root/src; \
# tox -vv -elint; \
# "
- name: pytest fedora:${{ matrix.fedora-release }}
run: |
docker pull fedora:${{ matrix.fedora-release }}
docker run \
-v ${GITHUB_WORKSPACE}:/root/src/ fedora:${{ matrix.fedora-release }} \
/bin/bash -c "\
dnf -y install \
freeipa-server \
freeipa-server-trust-ad \
tox \
python3-pytest \
; \
cd /root/src; \
tox -vv -epy3; \
"