Skip to content

Commit

Permalink
Standardize job names.
Browse files Browse the repository at this point in the history
"Build/Test/Release / lint" -> "test / lint"
  • Loading branch information
wmedrano committed Dec 18, 2023
1 parent d18751b commit 02063f3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/benchmark_main.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Benchmark HEAD in the main branch against the previous commit.
name: Benchmark Main
name: benchmark_main
on:
push:
branches: [main]

env:
CARGO_TERM_COLOR: always
jobs:
build:
benchmark:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/benchmark_pr.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Benchmark the PR against the main branch.
name: Benchmark PR
name: benchmark_pr
on:
pull_request:
branches: [main]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Runs general build and test logic.
name: Build/Test/Release
name: test
on:
push:
branches: [main]
Expand All @@ -17,7 +17,7 @@ jobs:
- name: Lint
run: cargo clippy --all-targets --all-features -- -D clippy::all
continue-on-error: true
test:
unit_tests:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
Expand Down

0 comments on commit 02063f3

Please sign in to comment.