From 4acd141d79a69e7fa9aef5e1a2f61dbb2ab4167b Mon Sep 17 00:00:00 2001 From: James Wolff Date: Fri, 8 Nov 2024 21:57:29 -0600 Subject: [PATCH] Update rust.yml --- .github/workflows/rust.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 5fe63a0..fef01c8 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -15,13 +15,15 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install latest rust stable uses: actions-rs/toolchain@v1 with: toolchain: stable override: true profile: minimal + - name: Clean + run: cargo clean - name: Build run: cargo build --verbose test: @@ -50,6 +52,8 @@ jobs: toolchain: stable override: true profile: minimal + - name: Clean + run: cargo clean - name: Diesel Migrations run: cargo install diesel_cli --no-default-features -F postgres && diesel migration run - name: Run tests