Skip to content

Commit

Permalink
chore: add autofix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
wsxiaoys authored Nov 12, 2023
1 parent 568b7b4 commit 99d43a2
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/autofix.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: autofix.ci

on:
pull_request:
push:
branches: [ "main" ]
permissions:
contents: read

jobs:
autofix:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: rustfmt, clippy

- name: Sccache cache
uses: mozilla-actions/[email protected]
with:
version: "v0.4.0"

- name: Cargo registry cache
uses: actions/cache@v3
with:
key: cargo-${{ runner.os }}-${{ hashFiles('**/Cargo.toml') }}-${{ github.sha }}
restore-keys: |
cargo-${{ runner.os }}-${{ hashFiles('**/Cargo.toml') }}-
cargo-${{ runner.os }}-
path: |
~/.cargo/registry
~/.cargo/git
- run: bash ./ci/prepare_build_environment.sh

- run: make fix

- uses: autofix-ci/action@d3e591514b99d0fca6779455ff8338516663f7cc

0 comments on commit 99d43a2

Please sign in to comment.