Skip to content

Commit

Permalink
ci: update actions tag
Browse files Browse the repository at this point in the history
  • Loading branch information
TornaxO7 committed Dec 23, 2024
1 parent 83b1ec6 commit 62fcf4c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- uses: TornaxO7/rust-template@v1-ci-actions
- uses: TornaxO7/rust-template@v2-ci-actions
- name: Check formatting
if: github.event.pull_request.head.repo.full_name != github.repository
run: cargo fmt --check --verbose
Expand All @@ -46,22 +46,22 @@ jobs:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- uses: TornaxO7/rust-template@v1-ci-actions
- uses: TornaxO7/rust-template@v2-ci-actions
- name: Check for build errors
run: cargo check --verbose

clippy:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- uses: TornaxO7/rust-template@v1-ci-actions
- uses: TornaxO7/rust-template@v2-ci-actions
- name: Check best practices (Clippy)
run: cargo clippy --verbose -- -Dwarnings

tests:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- uses: TornaxO7/rust-template@v1-ci-actions
- uses: TornaxO7/rust-template@v2-ci-actions
- name: Running tests
run: cargo test --verbose

0 comments on commit 62fcf4c

Please sign in to comment.