From 87a91a195fbd75970b80002535f5f45d6987d173 Mon Sep 17 00:00:00 2001 From: seth Date: Fri, 7 Apr 2023 04:19:04 -0400 Subject: move all ci over to nix --- .github/workflows/format_and_lint.yml | 73 ----------------------------------- 1 file changed, 73 deletions(-) delete mode 100644 .github/workflows/format_and_lint.yml (limited to '.github/workflows/format_and_lint.yml') 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" -- cgit v1.2.3