Skip to content

Hacking on new ideas #10

Hacking on new ideas

Hacking on new ideas #10

Workflow file for this run

name: rust-ci
on: [push, pull_request]
jobs:
build:
name: Tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- macOS-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt, clippy
override: true
- uses: Swatinem/rust-cache@v1
- name: Format check
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test