From 38123847ce3ac24345e831f0939e450770ebde15 Mon Sep 17 00:00:00 2001 From: "Derek T. Jones" Date: Sat, 18 Apr 2026 13:21:05 -0700 Subject: [PATCH] Limit CI permissions and build in parallel --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e01d334..2447251 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,6 +6,9 @@ on: push: branches: [main] +permissions: + contents: read + jobs: build-and-test: runs-on: ubuntu-latest @@ -14,6 +17,6 @@ jobs: - name: Configure run: cmake -S src -B build - name: Build - run: cmake --build build + run: cmake --build build --parallel - name: Test run: ./build/archetype --test