Skip to content

Commit

Permalink
chore: fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
christophwitzko committed Nov 2, 2020
1 parent c70d912 commit a11cf76
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,19 @@ jobs:
run: |
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s
./bin/golangci-lint run -v
test:
runs-on: ubuntu-latest
needs: lint
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v1
with:
go-version: 1.15
- run: ./scripts/start-gitea.sh
- run: go test -v ./...
build:
runs-on: ${{ matrix.os }}
needs: lint
needs: test
strategy:
fail-fast: true
matrix:
Expand All @@ -29,8 +39,6 @@ jobs:
with:
go-version: 1.15
- run: go build ./cmd/provider-git/
- run: ./scripts/start-gitea.sh
- run: go test -v ./...
release:
runs-on: ubuntu-latest
needs: build
Expand Down

0 comments on commit a11cf76

Please sign in to comment.