Update dependencies #126
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
on: [push, pull_request] | |
name: Build | |
env: | |
GO111MODULE: on | |
jobs: | |
build: | |
strategy: | |
matrix: | |
go-version: [1.17.x, 1.18.x, 1.19.x, 1.20.x] | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Build | |
run: | | |
sudo apt-mark hold grub-efi-amd64-signed | |
sudo apt update --fix-missing | |
sudo apt upgrade | |
sudo apt-get install -y libx11-dev libxcursor-dev libxmu-dev libwayland-dev libxpm-dev xbitmaps libxmu-headers libheif-dev heif-thumbnailer | |
make |