all: update dependencies and fix resulting breakage (#122) #240
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: Lint and Test | ||
env: | ||
image: ubuntu:23.10 | ||
dependencies: libgtk-4-dev libadwaita-1-dev | ||
go-version: 1.22.0 | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
jobs: | ||
go-vet: | ||
name: go vet | ||
runs-on: ubuntu-latest | ||
container: | ||
image: ${{ ubuntu }} | ||
Check failure on line 20 in .github/workflows/test.yml GitHub Actions / Lint and TestInvalid workflow file
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Install Dependencies | ||
run: | | ||
apt-get update | ||
apt-get install -y ${{ env.dependencies }} | ||
- name: Setup Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: ${{ env.go-version }} | ||
- name: go vet | ||
run: go vet -v ./... | ||
staticcheck: | ||
name: staticcheck | ||
runs-on: ubuntu-latest | ||
container: | ||
image: ${{ ubuntu }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Install Dependencies | ||
run: | | ||
apt-get update | ||
apt-get install -y ${{ env.dependencies }} | ||
- name: Setup Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: ${{ env.go-version }} | ||
- name: Staticcheck | ||
uses: dominikh/[email protected] | ||
with: | ||
install-go: false | ||
go-test: | ||
name: go test | ||
runs-on: ubuntu-latest | ||
container: | ||
image: ${{ ubuntu }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Install Dependencies | ||
run: | | ||
apt-get update | ||
apt-get install -y ${{ env.dependencies }} | ||
- name: Setup Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: ${{ env.go-version }} | ||
- name: go test | ||
run: go test -v ./... |