Skip to content

Commit 089b365

Browse files
authored
Create an GitHub Actions based CI Pipeline
1 parent cf3203b commit 089b365

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/ci.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Continuous Integration
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
strategy:
10+
matrix:
11+
python: [3.4, 3.5, 3.6, 3.7, pypy3]
12+
13+
steps:
14+
- uses: actions/checkout@v1
15+
- name: Set up Python ${{ matrix.python }}
16+
uses: actions/setup-python@v1
17+
with:
18+
python-version: ${{ matrix.python }}
19+
- name: Install dependencies
20+
run: |
21+
python -m pip install --upgrade pip
22+
pip install -r requirements.txt
23+
- name: Lint with pylint
24+
if: matrix.python == '3.7'
25+
run: ./lint.sh all
26+
- name: Test with pytest
27+
run: pytest

0 commit comments

Comments
 (0)