We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa210d4 commit a71f0ffCopy full SHA for a71f0ff
.github/workflows/main.yml
@@ -0,0 +1,26 @@
1
+# This is a basic workflow to help you get started with Actions
2
+
3
+name: CI
4
5
+on:
6
+ push:
7
+ branches: [ master ]
8
+ pull_request:
9
10
11
+ workflow_dispatch:
12
13
+jobs:
14
+ build:
15
+ runs-on: ubuntu-latest
16
17
+ steps:
18
+ - uses: actions/checkout@v2
19
20
+ - name: Compile and package
21
+ run: |
22
+ python3 ./setup.py install
23
24
+ - name: Test code
25
26
+ python3 ./setup.py test
0 commit comments