Skip to content
This repository has been archived by the owner on Nov 12, 2023. It is now read-only.

Build(deps): Bump actions/checkout from 3 to 4 #49

Build(deps): Bump actions/checkout from 3 to 4

Build(deps): Bump actions/checkout from 3 to 4 #49

Workflow file for this run

name: Rust CI
on:
push:
branches:
- main
pull_request:
jobs:
rust-ci:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
name: Test `cargo fmt/clippy/test` on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
env:
CARGO_TERM_COLOR: "always"
RUSTFLAGS: "-Dwarnings"
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@6fd3edff6979b79f87531400ad694fb7f2c84b1f
- run: |
cargo fmt --check
cargo clippy
cargo test