From 5146230f1f1c488fd086de40d326f3669166c956 Mon Sep 17 00:00:00 2001 From: Luke Else Date: Wed, 20 Nov 2024 20:16:20 +0000 Subject: [PATCH] Completely changed pipeline --- .gitea/workflows/nightly.yaml | 8 ++++++++ .gitea/workflows/test.yaml | 6 ++++++ 2 files changed, 14 insertions(+) diff --git a/.gitea/workflows/nightly.yaml b/.gitea/workflows/nightly.yaml index 8cdd2fb..f0ff3bb 100644 --- a/.gitea/workflows/nightly.yaml +++ b/.gitea/workflows/nightly.yaml @@ -20,6 +20,8 @@ jobs: steps: - uses: actions/checkout@v4 - uses: actions-rust-lang/setup-rust-toolchain@v1 + with: + cache: false - run: cargo test fmt: @@ -28,6 +30,8 @@ jobs: steps: - uses: actions/checkout@v4 - uses: actions-rust-lang/setup-rust-toolchain@v1 + with: + cache: false - run: rustup component add rustfmt - run: cargo fmt --all -- --check @@ -37,6 +41,8 @@ jobs: steps: - uses: actions/checkout@v4 - uses: actions-rust-lang/setup-rust-toolchain@v1 + with: + cache: false - run: rustup component add clippy - run: cargo clippy -- -D warnings @@ -46,4 +52,6 @@ jobs: steps: - uses: actions/checkout@v4 - uses: actions-rust-lang/setup-rust-toolchain@v1 + with: + cache: false - run: cargo build \ No newline at end of file diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 38ef21e..a7cc13a 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -19,6 +19,8 @@ jobs: steps: - uses: actions/checkout@v4 - uses: actions-rust-lang/setup-rust-toolchain@v1 + with: + cache: false - run: cargo test fmt: @@ -27,6 +29,8 @@ jobs: steps: - uses: actions/checkout@v4 - uses: actions-rust-lang/setup-rust-toolchain@v1 + with: + cache: false - run: rustup component add rustfmt - run: cargo fmt --all -- --check @@ -36,4 +40,6 @@ jobs: steps: - uses: actions/checkout@v4 - uses: actions-rust-lang/setup-rust-toolchain@v1 + with: + cache: false - run: cargo build \ No newline at end of file