Skip to content

Commit cc77836

Browse files
committed
refactor: lowercase job names, capitalize workflow names
Job names: linux, macos, windows (under their workflows) Workflow names: Verify, Test, Build (in main.yml)
1 parent 2bccdc6 commit cc77836

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ env:
77
CARGO_TERM_COLOR: always
88

99
jobs:
10-
Linux:
10+
linux:
1111
name: Linux
1212
runs-on: ubuntu-latest
1313
container: rust:1.75-slim
@@ -20,7 +20,7 @@ jobs:
2020
name: gitclaw-linux
2121
path: target/release/gitclaw
2222

23-
macOS:
23+
macos:
2424
name: macOS
2525
runs-on: macos-latest
2626
steps:
@@ -32,7 +32,7 @@ jobs:
3232
name: gitclaw-macos
3333
path: target/release/gitclaw
3434

35-
Windows:
35+
windows:
3636
name: Windows
3737
runs-on: windows-latest
3838
steps:

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ env:
77
CARGO_TERM_COLOR: always
88

99
jobs:
10-
Linux:
10+
linux:
1111
name: Linux
1212
runs-on: ubuntu-latest
1313
container: rust:1.75-slim
@@ -16,15 +16,15 @@ jobs:
1616
- run: apt-get update && apt-get install -y pkg-config libssl-dev
1717
- run: cargo test
1818

19-
macOS:
19+
macos:
2020
name: macOS
2121
runs-on: macos-latest
2222
steps:
2323
- uses: actions/checkout@v4
2424
- uses: dtolnay/[email protected]
2525
- run: cargo test
2626

27-
Windows:
27+
windows:
2828
name: Windows
2929
runs-on: windows-latest
3030
steps:

0 commit comments

Comments
 (0)