Skip to content

Commit 9149b1b

Browse files
committed
replace travis with github workflows
1 parent 54d0892 commit 9149b1b

File tree

3 files changed

+23
-7
lines changed

3 files changed

+23
-7
lines changed
File renamed without changes.

.github/workflows/test.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Run tests
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
9+
strategy:
10+
matrix:
11+
python: ['2.7', '3.6']
12+
13+
name: Python ${{ matrix.python }} test
14+
15+
steps:
16+
- uses: actions/checkout@v2
17+
18+
- uses: actions/setup-python@v2
19+
with:
20+
python-version: ${{ matrix.python }}
21+
22+
- name: Run tests
23+
run: cd tests/ && python -m unittest test_beta_code

.travis.yml

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

0 commit comments

Comments
 (0)