Skip to content

Commit 2b32e70

Browse files
committed
Add basic GitHub actions testing
1 parent 80b2ed4 commit 2b32e70

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Python package
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
strategy:
10+
matrix:
11+
python-version: [3.7, 3.8, 3.9]
12+
13+
steps:
14+
- uses: actions/checkout@v1
15+
- name: Set up Python ${{ matrix.python-version }}
16+
uses: actions/setup-python@v1
17+
with:
18+
python-version: ${{ matrix.python-version }}
19+
# - name: Install dependencies
20+
# run: |
21+
# python -m pip install --upgrade pip
22+
# pip install ...
23+
- name: Lint with pyfalkes
24+
run: |
25+
pip install pyflakes
26+
pyflakes .
27+
# - name: Test with pytest
28+
# run: |
29+
# pip install pytest
30+
# pytest

0 commit comments

Comments
 (0)