Skip to content

Commit e6ff357

Browse files
authored
Add SDK healthcheck (#22)
1 parent 8e247e8 commit e6ff357

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

Diff for: .github/workflows/healthcheck.yml

+26
Original file line numberDiff line numberDiff line change
@@ -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+
with:
24+
job-status: ${{ job.status }}
25+
slack-bot-token: ${{ secrets.SLACK_BOT_TOKEN }}
26+
channel: github-actions

0 commit comments

Comments
 (0)