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: strategy:
fail-fast: false fail-fast: false
matrix: 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: include:
# - python: '3.10' - python: "3.10"
# task:
# name: Lint
# run: flake8 .
# - python: '3.10'
# task:
# name: Type check
# run: mypy .
- python: '3.10'
task: task:
name: Build name: "Build"
run: | run: |
python setup.py check python setup.py check
python setup.py bdist_wheel sdist python setup.py bdist_wheel sdist
- python: '3.10' - python: "3.10"
task: task:
name: Style name: "Style"
run: | run: |
black --check . black --check .
# - python: '3.10'
# task:
# name: Docs
# run: cd docs && make html
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3