Skip to content

Commit

Permalink
Use matrix.os for macos workflow "runs-on"
Browse files Browse the repository at this point in the history
Previously was using macos-latest regardless of the value of
matrix.os. Should now use macOS 12, 13 and Latest.
  • Loading branch information
dgreatwood committed Aug 22, 2024
1 parent 57d9b16 commit 6723610
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,8 @@ concurrency:

jobs:
macos:
name: test macos with libevent
runs-on: macos-latest

name: macOS with Libevent

strategy:
fail-fast: false
matrix:
Expand All @@ -40,6 +39,8 @@ jobs:
tls: [ 'true', 'false' ]
def_debug: [ 'true', 'false' ]

runs-on: ${{ matrix.os }}

steps:
- name: Install dependencies (macOS)
if: contains(matrix.os, 'macos')
Expand Down

0 comments on commit 6723610

Please sign in to comment.