Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
nodece committed Jul 13, 2024
1 parent cf9235c commit 89b9e84
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v5
with:
go-version: 'stable'
- name: Check license header
run: docker run --rm -v $(pwd):/github/workspace ghcr.io/korandoru/hawkeye-native:v3 check
- name: Run golangci-lint
Expand All @@ -46,5 +49,7 @@ jobs:
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Run go mod tidy
run: go mod tidy
- name: Run Tests
run: make test GO_VERSION=${{ matrix.go-version }}
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ ARG PULSAR_IMAGE
ENV PULSAR_IMAGE=$PULSAR_IMAGE

# Install dependencies
RUN go mod download
RUN go mod tidy

# Basic compilation
RUN go build ./pulsar
Expand Down

0 comments on commit 89b9e84

Please sign in to comment.