From 89ca9765d4239ff753e63d211cf97bcffd80bd34 Mon Sep 17 00:00:00 2001 From: LeMoonStar Date: Sun, 1 Dec 2024 09:58:05 +0100 Subject: [PATCH] b --- .forgejo/workflows/benchmark.yaml | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/.forgejo/workflows/benchmark.yaml b/.forgejo/workflows/benchmark.yaml index a8f48eb..f1ced66 100644 --- a/.forgejo/workflows/benchmark.yaml +++ b/.forgejo/workflows/benchmark.yaml @@ -1,10 +1,16 @@ -on: [push] +name: Benchmark +on: + push: + +env: + CARGO_TERM_COLOR: always + jobs: - build: - runs-on: docker - container: - image: rustlang/rust:nightly - steps: - - uses: actions/checkout@v4 - - run: ls -la - - run: cargo build --release + build_and_test: + name: Rust project - latest + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - run: rustup update nightly && rustup default nightly + - run: cargo build --release --verbose + \ No newline at end of file