Skip to content

Update dependencies #38

Update dependencies

Update dependencies #38

Workflow file for this run

name: macOS native
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Install nightly toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
- name: Run tests
uses: actions-rs/cargo@v1
with:
command: test
- name: Build release
uses: actions-rs/cargo@v1
with:
command: build
args: --release