Landing page: phone-controls-playback hero, real logo, sharper compar… #13
This file contains hidden or 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: 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 |