Skip to content

feat(service): click to check updates right away #427

feat(service): click to check updates right away

feat(service): click to check updates right away #427

Workflow file for this run

name: go test ./...
on:
push:
branches:
- master
pull_request:
jobs:
test:
strategy:
matrix:
go: [stable]
os:
- ubuntu-latest
- macos-latest
- windows-latest
name: test
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go 1.23
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Check out code into the Go module directory
uses: actions/checkout@v4
with:
fetch-depth: 0
- if: ${{ matrix.os == 'ubuntu-latest' }}
run: sudo apt install -y gcc-aarch64-linux-gnu g++-aarch64-linux-gnu gcc libgtk-3-dev libayatana-appindicator3-dev
- name: Test
run: go test -short ./...