update #235
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
push: | |
branches: ["master", "develop"] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: 1.23.0 | |
- name: Applications installing... | |
run: sudo apt-get update && sudo apt-get install -y wget | |
- name: Hidden-Lake deps installing... | |
run: export PATH=$PATH:$(go env GOPATH)/bin && make install-deps | |
- name: Hidden-Lake lint/test running... | |
run: export PATH=$PATH:$(go env GOPATH)/bin && make |