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.
1 parent a91b1f5 commit 0f6275fCopy full SHA for 0f6275f
.github/workflows/main.yml
@@ -0,0 +1,32 @@
1
+name: main
2
+
3
+on:
4
+ pull_request:
5
6
+jobs:
7
+ test:
8
+ runs-on: ${{ matrix.os }}
9
+ strategy:
10
+ fail-fast: false
11
+ matrix:
12
+ include:
13
+ - name: python 3.6
14
+ python: 3.6
15
+ tox_env: py36
16
+ os: ubuntu-latest
17
18
+ steps:
19
+ - uses: actions/checkout@v2
20
21
+ - name: Set up Python
22
+ uses: actions/setup-python@v2
23
+ with:
24
+ python-version: ${{ matrix.python }}
25
26
+ - name: Install dependencies
27
+ run: |
28
+ python -m pip install --upgrade pip
29
+ pip install tox
30
31
+ - name: Run tests
32
+ run: "tox -e ${{ matrix.tox_env }}"
0 commit comments