Skip to content

Commit 7b76465

Browse files
authored
[skip ci] Merge pull request #11 from olback/macos
[skip ci] Build on MacOS with Github Actions
2 parents fb2adc7 + 198a02f commit 7b76465

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/macos.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: MacOS Build
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: macos-latest
9+
10+
steps:
11+
- uses: actions/checkout@v1
12+
- name: Install latest stable
13+
uses: actions-rs/toolchain@v1
14+
with:
15+
toolchain: stable
16+
override: true
17+
- uses: actions-rs/cargo@v1
18+
with:
19+
command: build
20+
args: --release --all-features

0 commit comments

Comments
 (0)