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 8c80c6a commit 77ff4bcCopy full SHA for 77ff4bc
.github/workflows/python.yml
@@ -0,0 +1,27 @@
1
+name: Python CI
2
+on:
3
+ push:
4
+ branches:
5
+ - main
6
+ paths-ignore:
7
+ - '**.md'
8
+ pull_request:
9
10
11
+jobs:
12
+ run:
13
+ name: Run
14
+ runs-on: ${{ matrix.operating-system }}
15
+ strategy:
16
+ matrix:
17
+ operating-system: [ubuntu-latest]
18
+ steps:
19
+ - name: Checkout
20
+ uses: actions/checkout@v2
21
+
22
+ - name: Run with setup-python 3.5
23
+ uses: ./
24
+ with:
25
+ python-version: 3.5
26
+ - name: Test on 3.5
27
+ run: make && make test-travis
0 commit comments