diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4066f99..b9c992f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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