We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e247e8 commit de7ad59Copy full SHA for de7ad59
1 file changed
.github/workflows/healthcheck.yml
@@ -0,0 +1,28 @@
1
+name: Health check
2
+on:
3
+ push:
4
+ branches:
5
+ - main
6
+ pull_request:
7
+
8
+jobs:
9
+ build-and-test:
10
+ runs-on: ubuntu-latest
11
+ name: Python Library tests
12
+ steps:
13
+ - name: Check out code
14
+ uses: actions/checkout@v2
15
16
+ - name: Setup Python
17
+ uses: actions/setup-python@v2
18
+ with:
19
+ python-version: '3.6'
20
+ - name: Run tests
21
+ env:
22
+ SANDBOX_API_KEY: ${{ secrets.SANDBOX_API_KEY }}
23
+ run: make test
24
+ uses: kpritam/slack-job-status-action@v1
25
26
+ job-status: ${{ job.status }}
27
+ slack-bot-token: ${{ secrets.SLACK_BOT_TOKEN }}
28
+ channel: github-actions
0 commit comments