Skip to content

Commit

Permalink
Remove prints, fix and rename test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ansermino committed Oct 3, 2024
1 parent ba43bbd commit b8586b4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 12 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
9 changes: 3 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build and Test
name: Check and Test

on:
pull_request:
Expand All @@ -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/[email protected]
timeout-minutes: 5
continue-on-error: true

- name: Build
- name: Check
run: make check

- name: Test
Expand Down

0 comments on commit b8586b4

Please sign in to comment.