mirror of
https://git.sr.ht/~eliasnaur/gio
synced 2026-07-07 18:35:34 +00:00
3425b25ecc
Signed-off-by: Elias Naur <mail@eliasnaur.com>
26 lines
424 B
YAML
26 lines
424 B
YAML
image: freebsd/latest
|
|
packages:
|
|
- libX11
|
|
- libxkbcommon
|
|
- wayland
|
|
- mesa-libs
|
|
- xorg-vfbserver
|
|
- go
|
|
sources:
|
|
- https://git.sr.ht/~eliasnaur/gio
|
|
environment:
|
|
PATH: /bin:/usr/local/bin:/usr/bin
|
|
tasks:
|
|
- test_gio: |
|
|
cd gio
|
|
go test ./...
|
|
- test_example: |
|
|
cd gio/example
|
|
go test ./...
|
|
- test_cmd: |
|
|
cd gio/cmd
|
|
go test ./...
|
|
- check_gofmt: |
|
|
cd gio
|
|
test -z $(gofmt -s -l .)
|