Skip to content

Bump actions/checkout from 4.2.0 to 4.2.1 #179

Bump actions/checkout from 4.2.0 to 4.2.1

Bump actions/checkout from 4.2.0 to 4.2.1 #179

Workflow file for this run

name: pre-commit
on:
push:
branches:
- main
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
pre-commit:
strategy:
fail-fast: false
matrix:
toolchain: [ nightly ]
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/[email protected]
- name: Set up Rust toolchain
uses: actions-rs/[email protected]
with:
toolchain: ${{ matrix.toolchain }}
override: true
components: rustfmt, clippy
- name: Set up Python
uses: actions/[email protected]
with:
python-version: "3.x"
- name: Run pre-commit
uses: pre-commit/[email protected]