Skip to content

Commit

Permalink
chore: updating github actions workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
wllfaria committed Oct 2, 2024
1 parent 6b55b92 commit 07bacb0
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 38 deletions.
32 changes: 0 additions & 32 deletions .github/dependabot.yaml

This file was deleted.

10 changes: 6 additions & 4 deletions .github/workflows/general.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: dtolnay/rust-toolchain@nightly
- uses: Swatinem/rust-cache@v2
- uses: extractions/setup-just@v2
- name: Run tests
Expand All @@ -22,17 +22,19 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: dtolnay/rust-toolchain@nightly
- uses: extractions/setup-just@v2
- name: Enforce formatting
run: just fmt
run: |
rustup component add rustfmt
just fmt
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: dtolnay/rust-toolchain@nightly
with:
components: clippy
- uses: Swatinem/rust-cache@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vhs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ jobs:
git add extra/*.gif
git config --global user.name "vhs-action"
git config --global user.email "[email protected]"
git commit -m "Updated vhs [skip ci]" || true
git commit -m "chore(ci): updated vhs tapes [skip ci]" || true
git push
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
hac.log
tarpaulin-report.html
mutants.out*
.vscode
2 changes: 1 addition & 1 deletion Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ build-time:
cargo +nightly build -Z timings

fmt:
cargo fmt --check
cargo +nightly fmt --check

lint:
cargo clippy -- -D warnings
Expand Down

0 comments on commit 07bacb0

Please sign in to comment.