-
Notifications
You must be signed in to change notification settings - Fork 19
84 lines (78 loc) · 2.19 KB
/
tests.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
name: Tests
on:
push:
branches:
- "**"
jobs:
unit-tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Test Setup
run: python -m pip install tox
- name: Run Tests
run: tox -e py
integration-tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Test Setup
run: python -m pip install tox
- name: Free up disk space on Linux
if: runner.os == 'Linux'
uses: jlumbroso/[email protected]
with:
# we need Python at the very least from this directory
tool-cache: false
# all of these default to true, but feel free to set to
# "false" if necessary for your workflow
android: true
dotnet: true
haskell: true
# this takes a decent amount of time, but we already save plenty of space
large-packages: false
swap-storage: true
- name: Run Tests
run: tox -e integration
env:
GRETEL_API_KEY: ${{ secrets.GRETEL_TEST_API_KEY }}
style-checks:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Test Setup
run: |
python -m pip install tox
- name: flake8
run: tox -e flake8
notify:
needs: [unit-tests, integration-tests, style-checks]
if: always()
runs-on: ubuntu-20.04
steps:
- uses: technote-space/workflow-conclusion-action@v2
- uses: 8398a7/action-slack@v2
with:
status: ${{ env.WORKFLOW_CONCLUSION }}
author_name: Branch Checks
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}