Skip to content

chore(deps): update actions/checkout action to v4.1.6 #144

chore(deps): update actions/checkout action to v4.1.6

chore(deps): update actions/checkout action to v4.1.6 #144

Workflow file for this run

name: Lint
on:
push:
branches:
- main
- speedreader
pull_request:
schedule:
- cron: '28 20 2 * *'
jobs:
lint:
runs-on: ubuntu-latest
permissions:
checks: write
steps:
- name: Checkout
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- name: Cache
uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # v2.7.3
- name: Format
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy --all-targets