Skip to content

Commit cd34134

Browse files
Refactor code quality workflow to explicitly name checkout step and e… (#2)
Changes - Added explicit naming for checkout step in GitHub Actions workflow - Configured workflow to run on pull request events (synchronize, opened, reopened) and pushes to main branch - Set up initial linting step in the CI pipeline
1 parent 594cc60 commit cd34134

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/code-quality.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@ on:
88
- main
99

1010
jobs:
11-
test:
11+
lint:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v4
16-
- name: Lint
17-
run: echo "Linting..."
15+
- name: Checkout
16+
uses: actions/checkout@v4
17+
- name: Lint
18+
run: echo "Linting..."

0 commit comments

Comments
 (0)