Skip to content

fix panic in layer icons #84

fix panic in layer icons

fix panic in layer icons #84

Workflow file for this run

name: Go tests
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
test:
strategy:
matrix:
go-version: [1.21.x]
platform: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- if: matrix.platform == 'ubuntu-latest'
name: Install
run: |
sudo apt-get update
sudo apt-get install libayatana-appindicator3-dev
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...