Skip to content

Bump the github-actions group across 1 directory with 5 updates #186

Bump the github-actions group across 1 directory with 5 updates

Bump the github-actions group across 1 directory with 5 updates #186

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
common:
name: common
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup Rust
run: >
rustup update stable &&
rustup default stable &&
rustup component add --toolchain stable clippy rustfmt
- name: Cargo cache
uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 # v2
- name: Check clippy
run: cargo clippy -- -D warnings
- name: Check rustfmt
run: cargo fmt --all -- --check
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose