Skip to content

ci(desktop): add desktop-release workflow + README #14

ci(desktop): add desktop-release workflow + README

ci(desktop): add desktop-release workflow + README #14

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
concurrency:
group: test-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: go test
run: go test -race -count=1 ./...