Skip to content

Update Cargo.toml

Update Cargo.toml #22

Workflow file for this run

name: macOS
on:
pull_request:
push:
branches:
- master
- main
paths-ignore:
- '**/README.md'
- '**/.gitignore'
jobs:
test:
name: Test Rust ${{ matrix.rust }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- { rust: stable, os: macos-latest }
steps:
- uses: actions/checkout@v2
- uses: actions-rs/cargo@v1
with:
toolchain: ${{ matrix.rust }}
command: build