Skip to content

ci(github): remove unnecessary check in govulncheck action pipeline #65

ci(github): remove unnecessary check in govulncheck action pipeline

ci(github): remove unnecessary check in govulncheck action pipeline #65

Workflow file for this run

name: go test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.20.6"
- name: Install Go dependencies
id: install_go_deps
run: |
go install golang.org/x/tools/cmd/stringer@latest
go install github.com/fyne-io/fyne-cross@latest
go install golang.org/x/text/cmd/gotext@latest
go install github.com/matryer/moq@latest
- name: Install dependencies
id: install_linux_deps
run: sudo apt install -y desktop-file-utils gcc libgl1-mesa-dev libegl1-mesa-dev libgles2-mesa-dev libx11-dev xorg-dev
- name: Run go generate
run: go generate -v ./...
- name: Run go build
run: go build -v ./...
- name: Run go test
run: go test -v ./...