Skip to content

Commit

Permalink
Move CI jobs to run on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
max-muoto committed Dec 3, 2023
1 parent 4b161a1 commit 6c1ceb3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ env:
jobs:
build:
name: "cargo build"
runs-on: ubuntu-latest
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose

cargo-fmt:
name: "cargo fmt"
runs-on: ubuntu-latest
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: "Check formatting"
Expand All @@ -29,7 +29,7 @@ jobs:

cargo-test:
name: "cargo test"
runs-on: ubuntu-latest
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: "Run tests"
Expand Down

0 comments on commit 6c1ceb3

Please sign in to comment.