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 92413dd
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.

4 changes: 3 additions & 1 deletion .github/workflows/general.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt
- uses: extractions/setup-just@v2
- name: Enforce formatting
run: just fmt
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
8 changes: 4 additions & 4 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ build-release:
cargo build --release --verbose

test:
cargo test --workspace
cargo test --workspace --all-features --verbose

test-release:
cargo test --workspace --release --verbose
cargo test --workspace --all-features --release --verbose

coverage:
cargo tarpaulin --verbose --workspace -o Html
Expand All @@ -20,10 +20,10 @@ build-time:
cargo +nightly build -Z timings

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

lint:
cargo clippy -- -D warnings
cargo clippy --workspace --all-features --all-targets -- -D warnings

# =================================== #
# RELEASE STUFF. DO NOT USE #
Expand Down

0 comments on commit 92413dd

Please sign in to comment.