Skip to content

fixed tests

fixed tests #102

Workflow file for this run

name: Build and Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Update mirrors
run: sudo apt update
- name: Install gio dependencies
run: sudo apt install gcc pkg-config libwayland-dev libx11-dev libx11-xcb-dev libxkbcommon-x11-dev libgles2-mesa-dev libegl1-mesa-dev libffi-dev libxcursor-dev libvulkan-dev
# TODO: figure out wich are actually needed or if we somehow can get rid of them
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ^1.18.2
- name: Generate Files
run: go generate ./...
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...