Skip to content

Commit

Permalink
Update rust.yml
Browse files Browse the repository at this point in the history
try to run on OS X
  • Loading branch information
rob-p committed May 10, 2022
1 parent 0747b1c commit 4b1b5a5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ env:
jobs:
Formatting:
if: "!contains(github.event.head_commit.message, 'skip ci')"
runs-on: ubuntu-latest
runs-on: [ubuntu-latest, macos-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v2
Expand All @@ -29,7 +29,7 @@ jobs:

build:
if: "!contains(github.event.head_commit.message, 'skip ci')"
runs-on: ubuntu-latest
runs-on: [ubuntu-latest, macos-latest]

steps:
- uses: actions/checkout@v2
Expand All @@ -40,7 +40,7 @@ jobs:

Linting:
if: "!contains(github.event.head_commit.message, 'skip ci')"
runs-on: ubuntu-latest
runs-on: [ubuntu-latest, macos-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v2
Expand Down

0 comments on commit 4b1b5a5

Please sign in to comment.