Skip to content

chore(ci): crate release #12

chore(ci): crate release

chore(ci): crate release #12

Workflow file for this run

on: [push]
name: build
jobs:
check:
name: Rust project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rustfmt, clippy
- name: Cargo format
run: cargo fmt --all -- --check
- name: Cargo clippy
run: cargo clippy --all-targets