Skip to content

build(deps): bump github.com/AllenDang/giu from 0.10.0 to 0.11.0 #510

build(deps): bump github.com/AllenDang/giu from 0.10.0 to 0.11.0

build(deps): bump github.com/AllenDang/giu from 0.10.0 to 0.11.0 #510

Workflow file for this run

name: Test and coverage
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up LibGL, Mesa & X11 libraries
run: |
sudo apt-get --allow-releaseinfo-change update
sudo apt-get install -y libgtk-3-dev libasound2-dev libxxf86vm-dev
- uses: actions/checkout@v4
with:
fetch-depth: 2
- uses: actions/setup-go@v5
with:
go-version: '1.23.x'
- name: Run coverage
run: go test -race -coverprofile=coverage.txt -covermode=atomic ./...
- name: Upload coverage to Codecov
run: bash <(curl -s https://codecov.io/bash)