build(deps): bump github.com/AllenDang/giu from 0.10.0 to 0.11.0 #614
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: build | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- 'master' | |
tags: | |
- 'v*' | |
pull_request: | |
jobs: | |
Building: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
# https://github.com/actions/virtual-environments#available-environments | |
os: [ubuntu-latest] | |
steps: | |
- name: Checkout out source code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: 'true' | |
- name: Set up MinGW | |
uses: egor-tensin/setup-mingw@v2 | |
with: | |
platform: x64 | |
- name: Set up Go environment | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.23.x' | |
id: go | |
- if: startsWith(matrix.os,'ubuntu') | |
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 | |
- name: Cache Go modules | |
uses: actions/cache@v4 | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: make setup | |
run: | | |
make setup | |
- name: make build | |
run: | | |
make build | |
- name: make test | |
run: | | |
make test |