Skip to content

Commit

Permalink
Move workflow to modules
Browse files Browse the repository at this point in the history
  • Loading branch information
andydotxyz committed Jul 3, 2024
1 parent 9827947 commit 32183f5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/platform_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

- name: Update coverage
run: |
GO111MODULE=off go get github.com/mattn/goveralls
go install github.com/mattn/goveralls@latest
set -e
go test -tags ci -covermode=atomic -coverprofile=coverage.out ./...
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/static_analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install golang gcc libgl1-mesa-dev libegl1-mesa-dev libgles2-mesa-dev libx11-dev xorg-dev
GO111MODULE=off go get golang.org/x/tools/cmd/goimports
GO111MODULE=off go get github.com/fzipp/gocyclo/cmd/gocyclo
GO111MODULE=off go get golang.org/x/lint/golint
GO111MODULE=off go get honnef.co/go/tools/cmd/staticcheck
go install golang.org/x/tools/cmd/goimports@latest
go install github.com/fzipp/gocyclo/cmd/gocyclo@latest
go install golang.org/x/lint/golint@latest
go install honnef.co/go/tools/cmd/staticcheck@latest
- name: Cleanup repository
run: rm -rf vendor/

Expand Down

0 comments on commit 32183f5

Please sign in to comment.