-
-
Notifications
You must be signed in to change notification settings - Fork 27
46 lines (37 loc) · 948 Bytes
/
test.yaml
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
name: test
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9"]
fail-fast: false
steps:
- name: checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: update ubuntu, install dependencies
run: sudo apt-get update -y
- name: set up python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: install dependencies
run: ./scripts/install.sh
- name: run dependencies
run: |
echo "setting local env"
. ./scripts/set-local-env.sh
echo "running dependencies"
./scripts/run-dependencies.sh
- name: run tests
run: ./scripts/test.sh
- name: docker-build
run: ./scripts/docker-build.sh