From eda2aa8723d125568c29d785b205c3edaf3766a2 Mon Sep 17 00:00:00 2001 From: plotchy <98172525+plotchy@users.noreply.github.com> Date: Wed, 26 Jun 2024 14:38:15 -0400 Subject: [PATCH] Update CI: trim bench and redundant build from workflow steps (#79) --- .github/workflows/rust.yml | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 8d887287..4afa4f27 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -11,22 +11,11 @@ env: jobs: build: - runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - name: Build - run: cargo build --all - - name: Run tests - run: cargo test --all - name: Lint with fmt run: cargo fmt --all --check - benchmark: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: Build - run: cargo build --all --release - - name: Run benches - run: cargo bench \ No newline at end of file + - name: Run tests + run: cargo test --all