Skip to content

Commit

Permalink
Update rust.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rob-p committed May 12, 2022
1 parent 64c7626 commit 385f0c8
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ env:
jobs:
Formatting:
if: "!contains(github.event.head_commit.message, 'skip ci')"
runs-on: macos-latest
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v2.4.2
Expand All @@ -29,8 +32,10 @@ jobs:

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

strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2.4.2
- name: Build
Expand All @@ -40,7 +45,10 @@ jobs:

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

0 comments on commit 385f0c8

Please sign in to comment.