Enable Github actions CI workflow on MacOS
This commit is contained in:
Родитель
49ff356d5e
Коммит
954f0bd35f
|
@ -0,0 +1,23 @@
|
|||
on: [push]
|
||||
|
||||
name: macos
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: macos-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
profile: minimal
|
||||
toolchain: stable
|
||||
override: true
|
||||
|
||||
- name: Build
|
||||
run: cargo build --verbose
|
||||
|
||||
- name: Build tests
|
||||
run: cargo test --verbose --no-run
|
||||
|
||||
- name: Run tests
|
||||
run: cargo test --verbose
|
Загрузка…
Ссылка в новой задаче