Skip to content
This repository was archived by the owner on Mar 1, 2022. It is now read-only.

Commit b1603a1

Browse files
committed
Change workflow to any push event.
1 parent 443d854 commit b1603a1

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/main.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: "CI"
2+
on: [push]
3+
4+
jobs:
5+
build:
6+
runs-on: ubuntu-latest
7+
strategy:
8+
max-parallel: 2
9+
matrix:
10+
python-version: [3.6, 3.7]
11+
12+
steps:
13+
- uses: actions/checkout@v1
14+
- name: Setup Python 3.7
15+
uses: actions/setup-python@v1
16+
with:
17+
python-version: 3.7
18+
- name: Install Dependencies
19+
run: |
20+
python -m pip install --upgrade pip
21+
pip install -r requirements.txt
22+
- name: Lint with flake8
23+
run: |
24+
pip install flake8
25+
flake8 . --count --statistics

0 commit comments

Comments
 (0)