Skip to content

Commit 8e152c4

Browse files
committed
Add CI workflow
We start our continous integration with running all tests there.
1 parent 013f37d commit 8e152c4

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/main.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: CI
2+
3+
on:
4+
- push
5+
- pull_request
6+
7+
jobs:
8+
tests:
9+
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/checkout@v2
14+
- name: Set up Python
15+
uses: actions/setup-python@v2
16+
with:
17+
python-version: '3.x'
18+
- name: Prepare test environment
19+
run: |
20+
python -m pip install --upgrade pip
21+
make test-setup
22+
- name: Run all tests
23+
run:
24+
make test-all

0 commit comments

Comments
 (0)