Skip to content

Commit

Permalink
Split Build and test ci
Browse files Browse the repository at this point in the history
  • Loading branch information
SKyletoft committed Jul 2, 2023
1 parent ce29eda commit 1748bfc
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ env:

jobs:
build:

runs-on: ubuntu-latest

steps:
Expand All @@ -20,6 +19,12 @@ jobs:
run: cargo build --verbose --locked
- name: Run tests debug
run: cargo test --verbose --locked

test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Build release
run: cargo build --verbose --locked --release
- name: Run tests release
Expand Down

0 comments on commit 1748bfc

Please sign in to comment.