Skip to content

Commit 2c78158

Browse files
committed
setup GitHub Actions
1 parent 77e90f0 commit 2c78158

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

.github/workflows/test.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Test Changes
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Clone Repository
10+
uses: actions/checkout@v2
11+
- uses: actions/setup-python@v2
12+
with:
13+
python-version: '3.x'
14+
- run: python tests/test_client.py
15+
env:
16+
TB_KEY: ${{ secrets.TB_KEY }}
17+
TB_SECRET: ${{ secrets.TB_SECRET }}
File renamed without changes.

0 commit comments

Comments
 (0)