Skip to content

add from macos-ci

add from macos-ci #3

Workflow file for this run

# 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:
strategy:
matrix:
os:
- macos-latest
- macos-10.15
name: MacOS Tests

Check failure on line 17 in .github/workflows/macos_ci.yml

View workflow run for this annotation

GitHub Actions / MacOS Tests

Invalid workflow file

The workflow is not valid. .github/workflows/macos_ci.yml (Line: 17, Col: 7): Unexpected value 'name' .github/workflows/macos_ci.yml (Line: 18, Col: 7): Unexpected value 'continue-on-error'
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