From 6859f1cbd11f7c34930c802c1343c6a0b9467af3 Mon Sep 17 00:00:00 2001 From: Kerdonov Date: Sun, 9 Nov 2025 23:06:00 +0200 Subject: [PATCH] gitea workflow fix 2 --- .gitea/workflows/cargo-test.yml | 2 +- .gitea/workflows/pipeline.yml | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/cargo-test.yml b/.gitea/workflows/cargo-test.yml index 0aa402b..8a62403 100644 --- a/.gitea/workflows/cargo-test.yml +++ b/.gitea/workflows/cargo-test.yml @@ -12,7 +12,7 @@ env: jobs: test: name: Test - runs-on: ubuntu-latest + runs-on: rust-latest steps: - name: Checkout repo diff --git a/.gitea/workflows/pipeline.yml b/.gitea/workflows/pipeline.yml index 142d2c9..d3fe08c 100644 --- a/.gitea/workflows/pipeline.yml +++ b/.gitea/workflows/pipeline.yml @@ -10,15 +10,12 @@ env: jobs: build: name: Cargo build release - runs-on: ubuntu-latest + runs-on: rust-latest steps: - name: Checkout repo uses: actions/checkout@v4 - - name: Update - run: apt update - - name: Check formatting run: cargo fmt --all -- --check