-
Notifications
You must be signed in to change notification settings - Fork 0
98 lines (80 loc) · 2.77 KB
/
dev.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
name: 'Pull Request Feedback'
on:
pull_request:
jobs:
lint:
name: Lint code with pylint
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v2
# Cache docker layers for faster build
- uses: satackey/[email protected]
# Ignore the failure of a step and avoid terminating the job.
continue-on-error: true
- name: Build
run: docker build -t strider-testing -f Dockerfile.test .
- name: Run linter and get output
run: |
echo 'LINT_OUTPUT<<EOF' >> $GITHUB_ENV
echo "$(docker run strider-testing pylint strider)" >> $GITHUB_ENV
echo 'EOF' >> $GITHUB_ENV
# - name: Report ESLint information as comment on pull request
# uses: mshick/add-pr-comment@v1
# with:
# message: |
# <details>
# <summary>Lint Output</summary>
# ```
# ${{ env.LINT_OUTPUT }}
# ```
# </details>
# repo-token: ${{ secrets.GITHUB_TOKEN }}
# repo-token-user-login: 'github-actions[bot]' # The user.login for temporary GitHub tokens
# allow-repeats: true
test:
name: Run pytest
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v2
# Cache docker layers for faster build
- uses: satackey/[email protected]
# Ignore the failure of a step and avoid terminating the job.
continue-on-error: true
- name: Build
run: docker build -t strider-testing -f Dockerfile.test .
- name: Run tests and get output
run: |
echo 'TEST_OUTPUT<<EOF' >> $GITHUB_ENV
echo "$(docker run strider-testing)" >> $GITHUB_ENV
echo 'EOF' >> $GITHUB_ENV
# - name: Report test information as comment on pull request
# uses: mshick/add-pr-comment@v1
# with:
# message: |
# <details>
# <summary>Test Output</summary>
# ```
# ${{ env.TEST_OUTPUT }}
# ```
# </details>
# repo-token: ${{ secrets.GITHUB_TOKEN }}
# repo-token-user-login: 'github-actions[bot]' # The user.login for temporary GitHub tokens
# allow-repeats: true
- name: Exit if there are any test failures
run: '[[ $TEST_OUTPUT != *FAILED* ]]'
verify-lock:
name: Verify lockfiles are up to date
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v2
- name: Verify lockfiles
run: python manage.py verify_locked
check-format:
name: Check that code matches Black formatter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: psf/black@stable