Skip to content

Bump actions/checkout from 3 to 4 (#15) #42

Bump actions/checkout from 3 to 4 (#15)

Bump actions/checkout from 3 to 4 (#15) #42

Workflow file for this run

name: Rust Flow
on:
push:
branches: [ master ]
paths-ignore:
- '**.md'
- '**.yaml'
pull_request:
branches: [ master ]
paths-ignore:
- '**.md'
- '**.yaml'
env:
CARGO_TERM_COLOR: always
# this one speeds up builds
CARGO_INCREMENTAL: 0
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 6
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
components: rustfmt
- name: Cargo Format
run: cargo fmt --all --check --
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- name: Cargo Compile (with tests)
run: cargo test --no-run --all-features
- name: Cargo Test
run: cargo test -- --nocapture --quiet