build(deps): bump github.com/AllenDang/giu from 0.10.0 to 0.11.0 #510
This file contains 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: 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) |