Skip to content

Commit ca45320

Browse files
committed
Convert from circle ci to github actions
1 parent 60cd167 commit ca45320

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/ci.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
on:
2+
create:
3+
tags:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
9+
permissions:
10+
contents: read
11+
12+
jobs:
13+
flake8:
14+
name: flake8
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v3
18+
- run: pip install flake8==3.7.8
19+
- run: python3 -m flake8 --show-source --statistics
20+
- name: install python2 pip
21+
run: sudo apt-get install -q -y python-pip
22+
- run: python2 -m flake8 --show-source --statistics
23+
- run: python2 -m pip install flake8==3.7.8

0 commit comments

Comments
 (0)