Skip to content

Commit 77ff4bc

Browse files
authored
Create python.yml
1 parent 8c80c6a commit 77ff4bc

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/python.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
paths-ignore:
10+
- '**.md'
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

Comments
 (0)