Skip to content

Commit

Permalink
fix: unify workflow names and job names (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
hendrikmaus authored Feb 15, 2022
1 parent 002e3a2 commit f2a04b4
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
---
name: CI

on:
push:
branches:
Expand All @@ -7,11 +10,9 @@ on:
env:
CARGO_TERM_COLOR: always

name: Continuous integration

jobs:
test:
name: Tests
name: Test
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
Expand All @@ -27,7 +28,9 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: test

clippy_check:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/release-please.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
---
name: CD

on:
push:
branches:
- master
name: release-please

jobs:
release-please:
name: Release
runs-on: ubuntu-latest
steps:
- name: Release Please
Expand Down

0 comments on commit f2a04b4

Please sign in to comment.