Skip to content

Commit

Permalink
Some cleanups
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelm committed Dec 26, 2021
1 parent a1e7574 commit 8608429
Showing 1 changed file with 8 additions and 12 deletions.
20 changes: 8 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,7 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # required for setuptools_scm
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Build temporary sdist and wheel
- name: Build sdist and temporary wheel
run: pipx run build

test:
Expand All @@ -40,26 +36,26 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: [3.6, 3.7, 3.8, 3.9, "3.10"]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
include:
- python-version: 3.8
os: macos-latest
- python-version: 3.8
os: windows-latest
- os: macos-latest
python-version: 3.8
- os: windows-latest
python-version: 3.8
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
- name: Install tox
run: python -m pip install tox
- name: Test
run: tox -e py
- name: Upload coverage report
uses: codecov/codecov-action@v1

deploy:
publish:
timeout-minutes: 10
runs-on: ubuntu-latest
needs: [lint, test]
Expand Down

0 comments on commit 8608429

Please sign in to comment.