Skip to content

Commit

Permalink
Update GH Actions workflow to run tests separate from other tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kylewlacy committed Jan 20, 2024
1 parent 27b0f15 commit 0f473b1
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ env:
NIGHTLY_TOOLCHAIN: nightly-2023-12-30

jobs:
test:
name: Run tests
check:
name: Run checks
runs-on: ubuntu-22.04
steps:
- name: Checkout code
Expand Down Expand Up @@ -48,6 +48,12 @@ jobs:
echo "Re-run 'npm run build' and commit the results" >&2
exit 1
fi
test:
name: Run tests
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run tests
run: cargo test --all
build:
Expand Down

0 comments on commit 0f473b1

Please sign in to comment.