From b8586b4671a835a3cbe4d80109421c10121c8d02 Mon Sep 17 00:00:00 2001 From: David Ansermino <14164624+ansermino@users.noreply.github.com> Date: Wed, 2 Oct 2024 21:10:24 -0400 Subject: [PATCH] Remove prints, fix and rename test workflow --- .github/workflows/lint.yml | 6 ------ .github/workflows/test.yml | 9 +++------ 2 files changed, 3 insertions(+), 12 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 3cbbef0..4694a2d 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -10,9 +10,6 @@ jobs: - name: Checkout source code uses: actions/checkout@v4 - - name: Print toolchain version - run: rustup show active-toolchain - - name: Run fmt run: make lint @@ -22,8 +19,5 @@ jobs: - name: Checkout source code uses: actions/checkout@v4 - - name: Print toolchain version - run: rustup show active-toolchain - - name: Run clippy run: make clippy \ No newline at end of file diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d599e64..84ba759 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,4 +1,4 @@ -name: Build and Test +name: Check and Test on: pull_request: @@ -11,21 +11,18 @@ env: jobs: test: - name: build-and-test + name: check-and-test runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v4 - - name: Print toolchain version - run: rustup show active-toolchain - - name: Setup sccache uses: mozilla-actions/sccache-action@v0.0.5 timeout-minutes: 5 continue-on-error: true - - name: Build + - name: Check run: make check - name: Test