Skip to content

Commit

Permalink
ci: macos to 14 (M1)
Browse files Browse the repository at this point in the history
  • Loading branch information
jvansanten committed Sep 25, 2024
1 parent 9dc43f4 commit b2d7d29
Showing 1 changed file with 1 addition and 14 deletions.
15 changes: 1 addition & 14 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,12 @@ jobs:
name: test
strategy:
matrix:
os: [ubuntu-20.04, macos-11]
os: [ubuntu-20.04, macos-14]
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash -l {0}
steps:
- name: Detect platform
id: detect
run: |
if [[ "${RUNNER_ARCH}" == "X64" ]]; then
if [[ "${RUNNER_OS}" == "Linux" ]]; then
echo '::set-output name=platform::linux-64' && exit 0
elif [[ "${RUNNER_OS}" == "macOS" ]]; then
echo '::set-output name=platform::osx-64' && exit 0
fi
fi
echo "Unsupported platform ${RUNNER_OS} ${RUNNER_ARCH}"
exit 1
- uses: actions/checkout@v2

- name: Set up conda environment
Expand Down

0 comments on commit b2d7d29

Please sign in to comment.