Skip to content

Commit

Permalink
fix conda build
Browse files Browse the repository at this point in the history
Signed-off-by: Martijn Govers <Martijn.Govers@Alliander.com>
  • Loading branch information
mgovers committed Oct 25, 2023
1 parent 81dcac0 commit b3ada49
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -220,10 +220,10 @@ jobs:
name: Build and test in Conda
if: (github.event_name == 'push') || (github.event_name == 'workflow_dispatch') || (!startsWith(github.head_ref, 'release'))

runs-on: ${{ matrix.os }}-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["ubuntu", "macos", "windows"]
os: ["ubuntu-latest", "macos-13", "windows-latest"]

defaults:
run:
Expand All @@ -241,6 +241,12 @@ jobs:
run: |
conda info
conda list
- name: Set up XCode
if: matrix.os == 'macos-13'
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable

- name: Build
run: python -m pip install . -vv --no-build-isolation --no-deps
Expand Down

0 comments on commit b3ada49

Please sign in to comment.