Bump golang.org/x/net from 0.0.0-20200222125558-5a598a2470a0 to 0.17.0 in /app #347
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: Go build | |
on: | |
pull_request: | |
paths: | |
- 'app/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
go: [ '1.17'] | |
defaults: | |
run: | |
shell: bash | |
working-directory: app | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: install deps | |
run: sudo apt-get update && sudo apt-get install -y -q --no-install-recommends libwebkit2gtk-4.0-dev libgtk-3-dev libglib2.0-dev libappindicator3-dev libayatana-appindicator3-dev | |
- name: build | |
run: go build -v | |