Skip to content

add new fyne-based display implementation #108

add new fyne-based display implementation

add new fyne-based display implementation #108

Workflow file for this run

on: [push, pull_request]
name: Test
jobs:
test:
strategy:
matrix:
go-version: [1.23.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Setup Linux dependencies
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get -y install \
libsdl2-dev \
pkg-config \
${NULL+}
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: go test -v -race ./...
- name: Format
if: matrix.go-version == '1.23.x'
run: diff -u <(echo -n) <(gofmt -d .)