Skip to content

ci: check code format with nightly toolchain #2

ci: check code format with nightly toolchain

ci: check code format with nightly toolchain #2

Workflow file for this run

name: Check
on: push
jobs:
Format:
runs-on: [self-hosted, linux]
steps:
- uses: actions/checkout@v2
- run: "cargo +nightly fmt --check"
Build:
runs-on: [self-hosted, linux]
steps:
- uses: actions/checkout@v2
- run: "cargo build"
- run: "cargo build --release"
Test:
runs-on: [self-hosted, linux]
needs: Build
steps:
- uses: actions/checkout@v2
- run: "cargo test"