We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 624d251 + 6c8cf8e commit b54fb08Copy full SHA for b54fb08
.github/workflows/ci.yml
@@ -0,0 +1,28 @@
1
+name: CI
2
+
3
+on:
4
+ pull_request:
5
+ push:
6
+ branches: [main]
7
8
+jobs:
9
+ pre-commit:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ - uses: actions/setup-python@v2
14
+ - uses: pre-commit/[email protected]
15
16
+ tests:
17
18
+ strategy:
19
+ matrix:
20
+ python: [3.6, 3.7, 3.8]
21
22
23
24
+ with:
25
+ python-version: ${{ matrix.python }}
26
27
+ - run: pip install nox
28
+ - run: nox -s test-${{ matrix.python }}
.travis.yml
0 commit comments