Skip to content

Commit

Permalink
Simplify workflow job names
Browse files Browse the repository at this point in the history
  • Loading branch information
merschformann committed Feb 19, 2024
1 parent 6003b22 commit 235d5b5
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go-lint.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: go lint
on: [push]
jobs:
sdk-go-lint:
lint:
runs-on: ubuntu-latest
steps:
- name: git clone
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/go-test.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: go test
on: [push]
jobs:
sdk-go-lint:
test:
runs-on: ubuntu-latest
steps:
- name: git clone
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/json-lint.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: json lint
on: [push]
jobs:
sdk-json-lint:
lint:
runs-on: ubuntu-latest
steps:
- name: git clone
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/markdown-lint.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: markdown lint
on: [push]
jobs:
sdk-markdown-lint:
runs-on: ubuntu-latest
steps:
- name: git clone
uses: actions/checkout@v4
lint:
runs-on: ubuntu-latest
steps:
- name: git clone
uses: actions/checkout@v4

- uses: DavidAnson/markdownlint-cli2-action@v7
with:
globs: "**/*.md"
- uses: DavidAnson/markdownlint-cli2-action@v7
with:
globs: "**/*.md"

0 comments on commit 235d5b5

Please sign in to comment.