Skip to content

Commit

Permalink
Let's build on 13 and 14 as 12 is too old
Browse files Browse the repository at this point in the history
  • Loading branch information
gazreese committed Apr 23, 2024
1 parent 55b2209 commit a0d1f08
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ on:
branches: [main]

jobs:
macos-build:
macos-build-14:
# macOS-latest images are not the most recent
# The macos-latest workflow label currently uses the macOS 12 runner image
# The macos-latest workflow label currently uses the macOS 12 runner image, which doesn't include the build-tools we need
# The vast majority of macOS developers would be using the latest version of macOS
# Current list here: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#choosing-github-hosted-runners
runs-on: macOS-14
Expand All @@ -21,10 +21,10 @@ jobs:
- name: Run tests
run: swift test -v

macos-build-latest:
# Let's also check that the code builds on the 'latest' macOS version according to Microsoft
# At 23rd April 2023 the latest macOS version is macOS 12
runs-on: macOS-latest
macos-build-13:
# Let's also check that the code builds on macOS 13
# At 23rd April 2023 the 'latest' macOS version is macOS 12
runs-on: macOS-13

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit a0d1f08

Please sign in to comment.