Skip to content

Commit 8947cf4

Browse files
committed
Add actions for macOS
(And missing version in lock file)
1 parent 6be3271 commit 8947cf4

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

.github/workflows/rust.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,20 @@ env:
1111

1212
jobs:
1313
build:
14-
15-
runs-on: ubuntu-latest
14+
name: Build and test for ${{ matrix.os}}
15+
runs-on: ${{ matrix.os }}
16+
permissions:
17+
contents: read
18+
strategy:
19+
matrix:
20+
include:
21+
## Linux builds
22+
- os: ubuntu-latest
23+
## macOS builds
24+
- os: macos-latest
1625

1726
steps:
18-
- uses: actions/checkout@v3
27+
- uses: actions/checkout@v4
1928
- name: Build
2029
run: cargo build --verbose
2130
- name: Run tests

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)