Skip to content

Update github actions/checkout #15

Update github actions/checkout

Update github actions/checkout #15

Workflow file for this run

name: Rust
on:
workflow_dispatch:
push:
branches:
- '*'
paths-ignore:
- '*.md'
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check
run: cargo check --verbose --all-features --all-targets
- name: Build
run: cargo build --verbose --all-features --all-targets
- name: Test
run: cargo test --verbose --all-features
- name: Clippy
run: cargo clippy --verbose --all-features --all-targets
- name: Fmt
run: cargo fmt --check