Skip to content

Commit

Permalink
CI: update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
MuellerSeb committed May 27, 2024
1 parent 773f0bd commit 3119186
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Set up Python 3.8
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: 3.9

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install black 'isort[colors]<6'
pip install -v --editable .[lint]
- name: black check
run: |
Expand All @@ -40,6 +40,10 @@ jobs:
run: |
python -m isort --check --diff --color .
- name: cython-lint check
run: |
cython-lint src/pykrige/
build_wheels:
name: wheels for ${{ matrix.cfg.os }} / ${{ matrix.cfg.arch }}
runs-on: ${{ matrix.cfg.os }}
Expand All @@ -61,7 +65,7 @@ jobs:
fetch-depth: '0'

- name: Build wheels
uses: pypa/cibuildwheel@v2.16.2
uses: pypa/cibuildwheel@v2.17.0
env:
CIBW_ARCHS: ${{ matrix.cfg.arch }}
with:
Expand All @@ -74,18 +78,16 @@ jobs:
build_sdist:
name: sdist and coveralls
runs-on: ubuntu-latest
strategy:
fail-fast: false

steps:
- uses: actions/checkout@v2
with:
fetch-depth: '0'

- name: Set up Python 3.8
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: 3.9

- name: Install dependencies
run: |
Expand Down

0 comments on commit 3119186

Please sign in to comment.