This commit is contained in:
msramalho
2022-07-01 13:22:39 +02:00
parent fa4983aea6
commit aa228bcde2

View File

@@ -29,42 +29,20 @@ jobs:
strategy:
fail-fast: false
matrix:
python: ['3.10']
# python: ['3.7', '3.10']
# task: # --show-capture=no on purpose
# - name: Test
# run: |
# pytest --show-capture=no --color=yes tests/
include:
# - python: '3.10'
# task:
# name: Lint
# run: flake8 .
# - python: '3.10'
# task:
# name: Type check
# run: mypy .
- python: '3.10'
- python: "3.10"
task:
name: Build
name: "Build"
run: |
python setup.py check
python setup.py bdist_wheel sdist
- python: '3.10'
- python: "3.10"
task:
name: Style
name: "Style"
run: |
black --check .
# - python: '3.10'
# task:
# name: Docs
# run: cd docs && make html
steps:
- uses: actions/checkout@v3