add github prefix again
Some checks failed
Test Suite / cargo test (pull_request) Failing after 2s
Code Checks / cargo fmt (pull_request) Failing after 2s
Code Checks / cargo clippy (pull_request) Failing after 16s

This commit is contained in:
soruh 2023-05-07 01:24:21 +02:00
parent 9b6658dfe2
commit 97230c7b1f
2 changed files with 3 additions and 4 deletions

View File

@ -10,7 +10,7 @@ jobs:
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
# Ensure rustfmt is installed and setup problem matcher # Ensure rustfmt is installed and setup problem matcher
- uses: actions-rust-lang/setup-rust-toolchain@v1 - uses: https://github.com/actions-rust-lang/setup-rust-toolchain@v1
with: with:
components: rustfmt components: rustfmt
- name: Rustfmt Check - name: Rustfmt Check
@ -23,7 +23,7 @@ jobs:
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
# Ensure clippy is installed and setup problem matcher # Ensure clippy is installed and setup problem matcher
- uses: actions-rust-lang/setup-rust-toolchain@v1 - uses: https://github.com/actions-rust-lang/setup-rust-toolchain@v1
with: with:
components: clippy components: clippy
- run: cargo clippy -- -D warnings - run: cargo clippy -- -D warnings

View File

@ -1,6 +1,5 @@
name: "Test Suite" name: "Test Suite"
on: on:
push:
pull_request: pull_request:
jobs: jobs:
@ -9,5 +8,5 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- uses: actions-rust-lang/setup-rust-toolchain@v1 - uses: https://github.com/actions-rust-lang/setup-rust-toolchain@v1
- run: cargo test --all-features - run: cargo test --all-features