Skip to content

Update deps

Update deps #30

Workflow file for this run

name: Build & Test
on:
pull_request:
push:
jobs:
check:
name: Validate on ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Setup rust toolchian
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rustfmt, clippy
- name: Run `check`
uses: actions-rs/cargo@v1
with:
command: check
args: --workspace
- name: Run `clippy`
uses: actions-rs/cargo@v1
with:
command: clippy
args: --workspace
- name: Run `test`
uses: actions-rs/cargo@v1
with:
command: test
args: --workspace