Skip to content

build(deps): bump golang.org/x/image from 0.22.0 to 0.23.0 #613

build(deps): bump golang.org/x/image from 0.22.0 to 0.23.0

build(deps): bump golang.org/x/image from 0.22.0 to 0.23.0 #613

Workflow file for this run

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