Skip to content

Initial public TinyPlay desktop release #1

Initial public TinyPlay desktop release

Initial public TinyPlay desktop release #1

Workflow file for this run

name: ci
on:
push:
pull_request:
permissions:
contents: read
jobs:
go-test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-14]
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: desktop-go
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.22"
- name: Sync frontend
shell: bash
run: make sync
- name: Test
run: go test ./...
- name: Build
run: go build ./cmd/tvremote