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