fix(tests): fix the name of the unit_tests only step, and make the name of the steps be prettier in Actions UI
This commit is contained in:
parent
346ec6f18a
commit
6fd3dec749
|
|
@ -15,6 +15,7 @@ env:
|
|||
|
||||
jobs:
|
||||
e2e-tests:
|
||||
name: E2E Tests
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
services:
|
||||
|
|
|
|||
|
|
@ -16,6 +16,7 @@ env:
|
|||
|
||||
jobs:
|
||||
integration-tests:
|
||||
name: Integration Tests
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
services:
|
||||
|
|
@ -171,6 +172,7 @@ jobs:
|
|||
fi
|
||||
|
||||
frontend-integration-tests:
|
||||
name: Frontend Integration Tests
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
defaults:
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@ env:
|
|||
|
||||
jobs:
|
||||
rust-unit-tests:
|
||||
name: Rust unit tests
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
|
|
@ -69,13 +70,14 @@ jobs:
|
|||
env:
|
||||
RUST_BACKTRACE: 1
|
||||
|
||||
- name: Run Rust unit tests - tests only
|
||||
- name: Run Rust unit tests - unit_tests only
|
||||
run: |
|
||||
cargo test --tests unit_tests --no-fail-fast
|
||||
env:
|
||||
RUST_BACKTRACE: 1
|
||||
|
||||
frontend-unit-tests:
|
||||
name: Frontend unit tests
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
defaults:
|
||||
|
|
|
|||
Loading…
Reference in New Issue