Skip to content

ci: pin action deps #411

ci: pin action deps

ci: pin action deps #411

Workflow file for this run

# Runs tests and linters on pushes to main and PRs.
name: CI
on:
push:
branches:
- 'main'
paths:
- '**.rs'
- 'Cargo.toml'
- 'Cargo.lock'
- '.github/**'
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches:
- 'main'
paths:
- '**.rs'
- 'Cargo.toml'
- 'Cargo.lock'
- '.github/**'
workflow_dispatch:
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
name: CI
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set up Rust toolchain
uses: dtolnay/rust-toolchain@3c5f7ea28cd621ae0bf5283f0e981fb97b8a7af9 # v1.94.1
with:
components: rustfmt, clippy
toolchain: stable
- name: Set up Rust caching
uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 # v2.9.1
- name: Run rustfmt
run: |
cargo fmt -- --check
- name: Run clippy
run: |
cargo clippy -- -D warnings
- name: Run tests
run: |
cargo test