Sebastián Ramírez
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
3 additions and
1 deletions
-
.github/workflows/test.yml
-
scripts/test.sh
|
|
@ -32,6 +32,9 @@ jobs: |
|
|
|
- name: Install Dependencies |
|
|
|
if: steps.cache.outputs.cache-hit != 'true' |
|
|
|
run: flit install --symlink |
|
|
|
- name: Lint |
|
|
|
if: ${{ matrix.python-version != '3.6' }} |
|
|
|
run: bash scripts/lint.sh |
|
|
|
- name: Test |
|
|
|
run: bash scripts/test.sh |
|
|
|
- name: Upload coverage |
|
|
|
|
|
@ -3,7 +3,6 @@ |
|
|
|
set -e |
|
|
|
set -x |
|
|
|
|
|
|
|
bash ./scripts/lint.sh |
|
|
|
# Check README.md is up to date |
|
|
|
python ./scripts/docs.py verify-readme |
|
|
|
export PYTHONPATH=./docs_src |
|
|
|