use simple golang workflow for now
All checks were successful
Go / build (push) Successful in 12m56s

This commit is contained in:
2025-04-13 22:18:08 +02:00
parent a90131c8be
commit 6943e3c9b7

View File

@@ -1,19 +1,17 @@
name: "Build" name: Go
on: on: [push]
push:
env:
HOME: /tmp
jobs: jobs:
test: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Install dependencies for Nix setup action - name: Setup Go
with: uses: actions/setup-go@v5
enable_kvm: true with:
extra_nix_config: "system-features = nixos-test benchmark big-parallel kvm" go-version: '1.24.x'
run: | - name: Install dependencies
apt update -y run: go get .
apt install sudo -y - name: Build
- uses: cachix/install-nix-action@v31 run: go build -v ./...
- run: nix --option sandbox false build .#