From 93b2e607d60834b43d7c60c4373c02076e658fcd Mon Sep 17 00:00:00 2001 From: Ivar Fatland Date: Sun, 14 Dec 2025 12:48:21 +0100 Subject: [PATCH] update ci --- .github/workflows/ci.yml | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2adb438..752f477 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,20 +7,13 @@ on: branches: [main] jobs: - build-and-test: + test: runs-on: ubuntu-latest - + name: Build and Test steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Setup Zig - uses: https://codeberg.org/mlugg/setup-zig@v2 - - - name: Install dependencies - run: | + - uses: actions/checkout@v3 + - uses: https://codeberg.org/mlugg/setup-zig@v2 + - run: | sudo apt-get update sudo apt-get install -y gcc make libcriterion-dev valgrind - - - name: Build and run tests - run: make test + - run: make test