build(deps): bump fyne.io/fyne/v2 from 2.4.5 to 2.5.0 #127
Workflow file for this run
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: | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- '**.png' | |
- '**.md' | |
pull_request: | |
branches: | |
- master | |
paths-ignore: | |
- '**.png' | |
- '**.md' | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
go: [1.17, 1.18] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Install dependencies | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
sudo apt-get update | |
sudo apt-get install pkg-config libwayland-dev libx11-dev libx11-xcb-dev libxkbcommon-x11-dev libgles2-mesa-dev libegl1-mesa-dev libffi-dev libxcursor-dev xorg-dev libvulkan-dev | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go }} | |
- uses: actions/cache@v4 | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ matrix.os }}-go-${{ matrix.go }}-${{ hashFiles('**/go.sum') }} | |
restore-keys: ${{ runner.os }}-go-${{ matrix.go }}- | |
- name: Build Gio | |
run: | | |
go run tools/mage.go build:gio | |
- name: Build Fyne | |
run: | | |
go run tools/mage.go build:fyne | |
- name: Artifacts Gio | |
uses: actions/upload-artifact@v4 | |
with: | |
name: gio-${{ matrix.os }}-${{ matrix.go }} | |
path: build/gio | |
- name: Artifacts Fyne | |
uses: actions/upload-artifact@v4 | |
with: | |
name: fyne-${{ matrix.os }}-${{ matrix.go }} | |
path: build/fyne |