Enable Github actions CI workflow on MacOS

This commit is contained in:
Eric Marsden 2022-01-28 15:34:08 +01:00
Родитель 49ff356d5e
Коммит 954f0bd35f
1 изменённых файлов: 23 добавлений и 0 удалений

23
.github/workflows/macos.yml поставляемый Normal file
Просмотреть файл

@ -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