From 2861516460e4c7f0c48d020674a663fbb0f4793d Mon Sep 17 00:00:00 2001 From: benzjeremy <313434618+benzjeremy@users.noreply.github.com> Date: Wed, 16 Sep 2026 21:49:21 +0200 Subject: [PATCH] Add standardized CI pipeline --- .github/workflows/ci.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0aafc06..7bad27b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,14 +19,12 @@ jobs: pacman -Sy --noconfirm archlinux-keyring pacman -S --noconfirm base-devel git go nodejs npm python-pip || true - # Go build and test - name: Build Go run: go build ./... || true - name: Test Go run: go test -race ./... || true - # Node install, lint, test - name: Install Node dependencies run: npm ci || true @@ -36,7 +34,6 @@ jobs: - name: Test Node run: npm test || true - # Python install, lint, test - name: Install Python dependencies run: pip install -r requirements.txt || true