Skip to content

Commit

Permalink
linting job
Browse files Browse the repository at this point in the history
  • Loading branch information
kwiatekus committed Jan 3, 2024
1 parent 1a2e8ba commit d76b3fe
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/warden-verify.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,29 @@ on:
pull_request:

jobs:
verify:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '1.21'
cache: true
- uses: golangci/golangci-lint-action@v3
with:
version: v1.54
unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '1.21'
cache: true
- name: lint
run: make lint
- name: unit test
run: make test

integration-test:
needs: verify
needs: unit-test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit d76b3fe

Please sign in to comment.