Skip to content

chore(ci): fix relese ci #9

chore(ci): fix relese ci

chore(ci): fix relese ci #9

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