fix(ci): use CGO_ENABLED=0 and standard Go CI

This commit is contained in:
benzjeremy 2026-09-17 09:39:42 +02:00
parent d297658013
commit f009e1bcff

View File

@ -11,12 +11,13 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: container:
image: archlinux:latest image: archlinux:latest
env:
CGO_ENABLED: "0"
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Install dependencies - name: Install dependencies
run: | run: |
pacman -Sy --noconfirm git base-devel go \ pacman -Sy --noconfirm git base-devel go
gtk3 webkit2gtk
- name: Set up Go - name: Set up Go
uses: actions/setup-go@v5 uses: actions/setup-go@v5
with: with: