-
Notifications
You must be signed in to change notification settings - Fork 7
37 lines (34 loc) · 882 Bytes
/
pythonapp.yml
File metadata and controls
37 lines (34 loc) · 882 Bytes
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
name: Regression tests
on:
push:
paths:
- '**.py'
- 'tests/**'
- '.github/workflows/pythonapp.yml'
pull_request:
paths:
- '**.py'
- 'tests/**'
- '.github/workflows/pythonapp.yml'
jobs:
test:
runs-on: ubuntu-latest
container: setsoft/kicad_auto_test:ki9
steps:
- uses: actions/checkout@v3
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings.
flake8 . --count --exit-zero --statistics
- name: Test KiCad 9
shell: bash
run: |
make test_server
- name: Store results
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: Test_Output_ki6
path: output