fix(ci): install GTK/WebKit packages for cgo build in Arch CI
This commit is contained in:
parent
c1b46084d4
commit
a1c87f8539
33
.github/workflows/ci_arch.yml
vendored
Normal file
33
.github/workflows/ci_arch.yml
vendored
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
name: CI (Arch Linux)
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ main ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ main ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: archlinux:latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
pacman -Sy --noconfirm git base-devel go \
|
||||||
|
gtk3 webkit2gtk
|
||||||
|
- name: Set up Go
|
||||||
|
uses: actions/setup-go@v5
|
||||||
|
with:
|
||||||
|
go-version: '1.22'
|
||||||
|
- name: Verify go.mod tidy
|
||||||
|
run: |
|
||||||
|
go mod tidy
|
||||||
|
git diff --exit-code go.mod go.sum
|
||||||
|
- name: Build
|
||||||
|
run: go build ./...
|
||||||
|
- name: Test
|
||||||
|
run: go test ./... -v
|
||||||
|
- name: Lint
|
||||||
|
run: go vet ./...
|
||||||
Loading…
Reference in New Issue
Block a user