From e8c9c74b963083ddeba6866cf33d0efb22f9a769 Mon Sep 17 00:00:00 2001 From: fraggle Date: Sun, 11 Jan 2026 19:01:44 -0400 Subject: [PATCH] Clarify CI runner vs program compatibility ubuntu-latest is just the GitHub Actions runner OS. PassAGE works on any Linux/Unix distro (Venom, Ubuntu, Arch, etc.) --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 10ce7ba..cf6d4c8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,7 +8,8 @@ on: jobs: build: - runs-on: ubuntu-latest # CI testing platform only - program works on any Linux/Unix distro + # ubuntu-latest is just the GitHub Actions runner OS - PassAGE works on any Linux/Unix distro + runs-on: ubuntu-latest strategy: matrix: go-version: ['1.21', '1.22']