Skip to content

Commit

Permalink
Revert change to github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kenba committed Nov 28, 2024
1 parent b0716e1 commit 4fc5186
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,18 @@ env:
CARGO_TERM_COLOR: always

jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
run: rustup update stable
- name: Unit test
run: cargo check

build:
name: Unit Test
name: Build
runs-on: ubuntu-latest

steps:
Expand All @@ -31,8 +41,10 @@ jobs:
- uses: actions/checkout@v4
- name: Install Rust
run: rustup update stable
- name: Run tests
run: cargo test -- --test-threads=1
- name: Build
run: cargo build --verbose
# - name: Run tests
# run: cargo test -- --test-threads=1

clippy:
name: Clippy
Expand Down

0 comments on commit 4fc5186

Please sign in to comment.