Skip to content

minimize sections

minimize sections #49

Workflow file for this run

name: Check Tutorial
on:
push:
branches:
- master
pull_request:
branches:
- master
env:
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
jobs:
cargo:
runs-on: ubuntu-latest
steps:
- name: Run sccache-cache
uses: mozilla-actions/[email protected]
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt, clippy
- name: Run format, lint, and test script
run: ./check.sh
shell: bash