summaryrefslogtreecommitdiff
path: root/.github/workflows/format_and_lint.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/format_and_lint.yml')
-rw-r--r--.github/workflows/format_and_lint.yml73
1 files changed, 0 insertions, 73 deletions
diff --git a/.github/workflows/format_and_lint.yml b/.github/workflows/format_and_lint.yml
deleted file mode 100644
index 08a9dce..0000000
--- a/.github/workflows/format_and_lint.yml
+++ /dev/null
@@ -1,73 +0,0 @@
-name: format and lint
-
-on:
- push:
- paths:
- - "**.lock"
- - "**.nix"
- - "**.rs"
- - "**.toml"
- pull_request:
- paths:
- - "**.lock"
- - "**.nix"
- - "**.rs"
- - "**.toml"
- workflow_dispatch:
-
-jobs:
- check:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v3
- - uses: actions-rs/toolchain@v1
- with:
- profile: minimal
- toolchain: stable
- override: true
- - uses: actions-rs/cargo@v1
- with:
- command: check
-
- clippy:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v3
- - uses: actions-rs/toolchain@v1
- with:
- profile: minimal
- toolchain: stable
- override: true
- components: clippy
- - uses: actions-rs/clippy-check@v1
- with:
- token: ${{ secrets.GITHUB_TOKEN }}
- args: --all-features
-
- fmt:
- if: ${{ github.event_name == 'push' }}
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v3
- - uses: actions-rs/toolchain@v1
- with:
- profile: minimal
- toolchain: stable
- override: true
- components: rustfmt
-
- - uses: actions-rs/cargo@v1
- with:
- command: fmt
- args: --all
-
- - uses: cachix/install-nix-action@v19
- with:
- github_access_token: ${{ secrets.GITHUB_TOKEN }}
-
- - run: nix fmt
-
- - uses: EndBug/add-and-commit@v9
- with:
- default_author: github_actions
- message: "chore: fmt files"