fix macos makefile #10
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Based on https://github.com/actions-rs/meta/blob/master/recipes/quickstart.md | |
name: MacOS Tests | |
on: | |
push: | |
tags-ignore: | |
- '**' | |
branches: | |
- '**' | |
pull_request: null | |
jobs: | |
test: | |
name: MacOS Tests | |
strategy: | |
matrix: | |
os: | |
- macos-13 | |
- macos-14 | |
continue-on-error: true | |
runs-on: '${{ matrix.os }}' | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Install stable toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
components: 'rustfmt, clippy' | |
- name: Install Cargo Make | |
uses: davidB/rust-cargo-make@v1 | |
- name: Install Dependencies | |
run: cargo make install_deps | |
- run: cargo make test --no-default-features | |
- run: cargo make test |