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 0f344a6 + 38c2e93 commit bf2f244Copy full SHA for bf2f244
.github/workflows/ci.yml
@@ -0,0 +1,22 @@
1
+name: Test Suite Sanity Checking
2
+
3
+on:
4
+ push:
5
+ release:
6
+ types: [published]
7
8
+jobs:
9
+ build:
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - uses: actions/checkout@v1
14
+ - name: Set up Python
15
+ uses: actions/setup-python@v1
16
+ with:
17
+ python-version: 3.7
18
+ - name: Install tox
19
+ run: |
20
+ python -m pip install tox
21
+ - name: Run the sanity checks
22
+ run: python -m tox
.travis.yml
0 commit comments