Skip to content

Commit 5caea32

Browse files
authored
Fix health check (#34)
* Fix health check * Remove ignored files * Rename step * Failure only
1 parent 789b465 commit 5caea32

File tree

4 files changed

+13
-29
lines changed

4 files changed

+13
-29
lines changed

.github/workflows/healthcheck.yml renamed to .github/workflows/health_check.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,28 @@ on:
66
jobs:
77
build-and-test:
88
runs-on: ubuntu-latest
9-
name: Python Library tests
9+
name: Run tests
10+
strategy:
11+
matrix:
12+
python: ['3.6']
1013
steps:
1114
- name: Check out code
1215
uses: actions/checkout@v2
1316

1417
- name: Setup Python
1518
uses: actions/setup-python@v2
1619
with:
17-
python-version: '3.6'
20+
python-version: ${{ matrix.python }}
21+
1822
- name: Run tests
1923
env:
2024
SANDBOX_API_KEY: ${{ secrets.SANDBOX_API_KEY }}
2125
run: make test
2226

23-
- name: Notify Slack
27+
- name: Notify slack
2428
uses: kpritam/slack-job-status-action@v1
2529
with:
30+
if: ${{ failure() }}
2631
job-status: ${{ job.status }}
2732
slack-bot-token: ${{ secrets.SLACK_BOT_TOKEN }}
28-
channel: github-actions
33+
channel: eng-notifications

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,7 @@ target/
6464
#Ipython Notebook
6565
.ipynb_checkpoints
6666

67-
git_push.sh
67+
# Ignore openapi-generator artifacts
68+
.openapi-generator-ignore
69+
/.openapi-generator/
70+
git_push.sh

.openapi-generator-ignore

Lines changed: 0 additions & 23 deletions
This file was deleted.

.openapi-generator/VERSION

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)