diff --git a/.gitea/workflows/checks.yaml b/.gitea/workflows/checks.yaml index 7270533..9ecfd01 100644 --- a/.gitea/workflows/checks.yaml +++ b/.gitea/workflows/checks.yaml @@ -26,4 +26,13 @@ jobs: - uses: actions-rust-lang/setup-rust-toolchain@v1 with: components: clippy - - run: cargo clippy -- -D warnings \ No newline at end of file + - run: cargo clippy -- -D warnings + + # Run tests + test: + name: cargo test + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions-rust-lang/setup-rust-toolchain@v1 + - run: cargo test --all-features \ No newline at end of file diff --git a/.gitea/workflows/tests.yaml b/.gitea/workflows/tests.yaml deleted file mode 100644 index 803beea..0000000 --- a/.gitea/workflows/tests.yaml +++ /dev/null @@ -1,12 +0,0 @@ -name: "Test Suite" -on: - pull_request: - -jobs: - test: - name: cargo test - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: actions-rust-lang/setup-rust-toolchain@v1 - - run: cargo test --all-features