Skip to content

ci: run publish dry run at the start of release #13

ci: run publish dry run at the start of release

ci: run publish dry run at the start of release #13

Workflow file for this run

name: lint
on:
push:
branches: [ "main" ]
pull_request:
paths:
- "*Cargo.*"
- "**/*.rs"
- ".github/workflows/*.yml"
env:
CARGO_TERM_COLOR: always
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- name: Check formatting
run: cargo fmt --all -- --check
- name: Lint
run: cargo clippy