We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3d4b22 commit 675acbbCopy full SHA for 675acbb
2 files changed
.github/workflows/test.yml
@@ -0,0 +1,33 @@
1
+name: Test
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
9
+ steps:
10
+ - uses: actions/checkout@v2
11
12
+ - name: Set up Python
13
+ uses: actions/setup-python@v2
14
+ with:
15
+ python-version: 3.9
16
17
+ - name: pip cache
18
+ uses: actions/cache@v2
19
20
+ path: ~/.cache/pip
21
+ key:
22
+ ${{ matrix.os }}-${{ matrix.python-version }}-${{ hashFiles('**/requirements.txt') }}
23
+ restore-keys: |
24
+ ${{ matrix.os }}-${{ matrix.python-version }}-
25
26
+ - name: Install dependencies
27
+ run: |
28
+ python -m pip install --upgrade pip
29
+ python -m pip install --upgrade nox virtualenv
30
31
+ - name: Nox build
32
33
+ python -m nox -s build
.travis.yml
0 commit comments