Skip to content

Commit 1ff2fb6

Browse files
authored
Merge pull request #264 from sir-gon/develop
[CONFIG] [Github Actions] naming and standardization.
2 parents 517f724 + aabd235 commit 1ff2fb6

File tree

4 files changed

+13
-12
lines changed

4 files changed

+13
-12
lines changed

.github/workflows/go-coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ env:
1515

1616
jobs:
1717

18-
build:
19-
name: "Run CI"
18+
coverage:
19+
name: "Go CI Tests Coverage"
2020
strategy:
2121
fail-fast: false
2222
matrix:

.github/workflows/go.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ env:
1515

1616
jobs:
1717

18-
build:
19-
name: "Run CI"
18+
test:
19+
name: "Go CI Tests"
2020
strategy:
2121
fail-fast: false
2222
matrix:

.github/workflows/markdown-lint.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
---
2-
32
name: Markdown Lint
43

54
on: # yamllint disable-line rule:truthy
@@ -10,21 +9,22 @@ on: # yamllint disable-line rule:truthy
109
branches: ["main"]
1110
workflow_dispatch:
1211

13-
jobs:
14-
build:
12+
permissions: read-all
1513

14+
jobs:
15+
markdownlint:
16+
name: Markdown Lint
1617
runs-on: ubuntu-24.04
1718

1819
strategy:
1920
matrix:
20-
os: ["ubuntu-24.04"]
21-
node-version: [20.x]
22-
# See supported Node.js release
23-
# schedule at https://nodejs.org/en/about/releases/
21+
node-version: [22.x]
22+
# See supported Node.js release schedule
23+
# at https://nodejs.org/en/about/releases/
2424

2525
steps:
2626
- name: Checkout repository
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
2828

2929
- name: Set up Node.js ${{ matrix.node-version }}
3030
uses: actions/setup-node@v4

.github/workflows/yamllint.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ on: # yamllint disable-line rule:truthy
1111

1212
jobs:
1313
lint:
14+
name: YAML lint
1415
runs-on: ubuntu-24.04
1516
steps:
1617
- name: Checkout repository

0 commit comments

Comments
 (0)