Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
ymtdzzz committed Mar 31, 2024
1 parent c66ae37 commit ed1be62
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/lint-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,17 @@ jobs:
go-version-file: './go.mod'
- name: Run lint
run: make install-lint-tools lint
lint-exporter:
name: Run lint for exporter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: './go.mod'
- name: Run lint for exporter
run: make install-lint-tools lint-exporter

test:
name: Run test
Expand All @@ -26,3 +37,14 @@ jobs:
go-version-file: './go.mod'
- name: Run test
run: make test
test-exporter:
name: Run test for exporter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: './go.mod'
- name: Run test for exporter
run: make test-exporter

0 comments on commit ed1be62

Please sign in to comment.