File tree 6 files changed +60
-109
lines changed
6 files changed +60
-109
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ name : main
2
+
3
+ on :
4
+ push :
5
+ branches : [master]
6
+ tags :
7
+ pull_request :
8
+
9
+ jobs :
10
+ main :
11
+ strategy :
12
+ matrix :
13
+ include :
14
+ # linux
15
+ - os : ubuntu-latest
16
+ python : pypy-3.7
17
+ toxenv : py
18
+ - os : ubuntu-latest
19
+ python : 3.6
20
+ toxenv : py
21
+ - os : ubuntu-latest
22
+ python : 3.7
23
+ toxenv : py
24
+ - os : ubuntu-latest
25
+ python : 3.8
26
+ toxenv : py
27
+ - os : ubuntu-latest
28
+ python : 3.9
29
+ toxenv : py
30
+ # windows
31
+ - os : windows-latest
32
+ python : 3.6
33
+ toxenv : py
34
+ # misc
35
+ - os : ubuntu-latest
36
+ python : 3.9
37
+ toxenv : docs
38
+ - os : ubuntu-latest
39
+ python : 3.9
40
+ toxenv : linters
41
+ - os : ubuntu-latest
42
+ python : 3.9
43
+ toxenv : dogfood
44
+ runs-on : ${{ matrix.os }}
45
+ steps :
46
+ - uses : actions/checkout@v2
47
+ - uses : actions/setup-python@v2
48
+ with :
49
+ python-version : ${{ matrix.python }}
50
+ - run : pip install --upgrade setuptools pip tox virtualenv
51
+ - run : tox -e ${{ matrix.toxenv }}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 3
3
- repo : https://github.com/pre-commit/pre-commit-hooks
4
4
rev : v2.3.0
5
5
hooks :
6
+ - id : check-yaml
6
7
- id : debug-statements
7
8
exclude : ^tests/fixtures/example-code/invalid-syntax.py$
8
9
- id : end-of-file-fixer
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ .. image :: https://github.com/PyCQA/flake8/workflows/main/badge.svg
2
+ :target: https://github.com/PyCQA/flake8/actions?query=workflow%3Amain
3
+ :alt: build status
4
+
5
+ .. image :: https://results.pre-commit.ci/badge/github/PyCQA/flake8/master.svg
6
+ :target: https://results.pre-commit.ci/latest/github/PyCQA/flake8/master
7
+ :alt: pre-commit.ci status
8
+
1
9
========
2
10
Flake8
3
11
========
You can’t perform that action at this time.
0 commit comments