File tree 1 file changed +65
-9
lines changed
1 file changed +65
-9
lines changed Original file line number Diff line number Diff line change 18
18
- bug/*
19
19
20
20
jobs :
21
- build :
22
-
23
- runs-on : ubuntu-latest
21
+ linting :
22
+ runs-on : ${{ matrix.os }}
24
23
strategy :
25
24
matrix :
26
25
python-version :
29
28
- ' 3.10'
30
29
- ' 3.11'
31
30
- ' 3.12'
31
+ os :
32
+ - ubuntu-latest
32
33
33
34
steps :
34
35
- uses : actions/checkout@v3
45
46
- name : Run Linting
46
47
run : |
47
48
make pylint
48
- - name : Run Unit-Testing and Coverage
49
- run : |
50
- make coverage
51
- - name : Run Build
52
- run : |
53
- make build
49
+
50
+ testing-coverage :
51
+ runs-on : ${{ matrix.os }}
52
+ strategy :
53
+ matrix :
54
+ python-version :
55
+ - 3.8
56
+ - 3.9
57
+ - ' 3.10'
58
+ - ' 3.11'
59
+ - ' 3.12'
60
+ os :
61
+ - ubuntu-latest
62
+
63
+ steps :
64
+ - uses : actions/checkout@v3
65
+ - name : Set up Python ${{ matrix.python-version }}
66
+ uses : actions/setup-python@v4
67
+ with :
68
+ python-version : ${{ matrix.python-version }}
69
+ - name : Upgrade pip setuptools wheel
70
+ run : |
71
+ python -m pip install --upgrade pip setuptools wheel
72
+ - name : Install requirements from requirements-dev.txt
73
+ run : |
74
+ pip install -r requirements-dev.txt
75
+ - name : Run Unit-Testing and Coverage
76
+ run : |
77
+ make coverage
78
+ - name : Run Build
79
+ run : |
80
+ make build
81
+
82
+ build :
83
+ runs-on : ${{ matrix.os }}
84
+ strategy :
85
+ matrix :
86
+ python-version :
87
+ - 3.8
88
+ - 3.9
89
+ - ' 3.10'
90
+ - ' 3.11'
91
+ - ' 3.12'
92
+ os :
93
+ - ubuntu-latest
94
+
95
+ steps :
96
+ - uses : actions/checkout@v3
97
+ - name : Set up Python ${{ matrix.python-version }}
98
+ uses : actions/setup-python@v4
99
+ with :
100
+ python-version : ${{ matrix.python-version }}
101
+ - name : Upgrade pip setuptools wheel
102
+ run : |
103
+ python -m pip install --upgrade pip setuptools wheel
104
+ - name : Install requirements from requirements-dev.txt
105
+ run : |
106
+ pip install -r requirements-dev.txt
107
+ - name : Run Build
108
+ run : |
109
+ make build
You can’t perform that action at this time.
0 commit comments