File tree Expand file tree Collapse file tree 4 files changed +13
-29
lines changed Expand file tree Collapse file tree 4 files changed +13
-29
lines changed Original file line number Diff line number Diff line change 6
6
jobs :
7
7
build-and-test :
8
8
runs-on : ubuntu-latest
9
- name : Python Library tests
9
+ name : Run tests
10
+ strategy :
11
+ matrix :
12
+ python : ['3.6']
10
13
steps :
11
14
- name : Check out code
12
15
uses : actions/checkout@v2
13
16
14
17
- name : Setup Python
15
18
uses : actions/setup-python@v2
16
19
with :
17
- python-version : ' 3.6'
20
+ python-version : ${{ matrix.python }}
21
+
18
22
- name : Run tests
19
23
env :
20
24
SANDBOX_API_KEY : ${{ secrets.SANDBOX_API_KEY }}
21
25
run : make test
22
26
23
- - name : Notify Slack
27
+ - name : Notify slack
24
28
uses : kpritam/slack-job-status-action@v1
25
29
with :
30
+ if : ${{ failure() }}
26
31
job-status : ${{ job.status }}
27
32
slack-bot-token : ${{ secrets.SLACK_BOT_TOKEN }}
28
- channel : github-actions
33
+ channel : eng-notifications
Original file line number Diff line number Diff line change @@ -64,4 +64,7 @@ target/
64
64
# Ipython Notebook
65
65
.ipynb_checkpoints
66
66
67
- git_push.sh
67
+ # Ignore openapi-generator artifacts
68
+ .openapi-generator-ignore
69
+ /.openapi-generator /
70
+ git_push.sh
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments