-
-
Notifications
You must be signed in to change notification settings - Fork 4
78 lines (65 loc) · 1.85 KB
/
test.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
name: Tests
on:
push:
branches:
- 'master'
pull_request:
paths:
- '*gradle*'
- '.github/workflows/test.yml'
- '.groovylintrc.json'
- '.pre-commit-config.yaml'
- 'jobs/**'
- 'src/**'
- 'tests/**'
- 'docker/**'
jobs:
linting:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Run FOSSA scan and upload build data
uses: fossa-contrib/[email protected]
with:
fossa-api-key: 7c94ee8610054ec8084c954b58615e0e
- name: Set up Python
uses: actions/setup-python@v3
- name: Python Cache
uses: actions/cache@v3
with:
path: ${{ env.pythonLocation }}
key: ${{ env.pythonLocation }}-${{ hashFiles('tests/requirements.txt') }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade --upgrade-strategy eager -r tests/requirements.txt
- name: Run pre-commit
run: |
pre-commit run --all-files
tests:
name: Functional
needs: linting
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
- name: Python Cache
uses: actions/cache@v3
with:
path: ${{ env.pythonLocation }}
key: ${{ env.pythonLocation }}-${{ hashFiles('tests/requirements.txt') }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade --upgrade-strategy eager -r tests/requirements.txt
- name: Set Swap Space
uses: pierotofy/set-swap-space@master
with:
swap-size-gb: 10
- name: Test with pytest
run: pytest