summaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2023-05-02 21:30:29 +0200
committerGitHub <noreply@github.com>2023-05-02 21:30:29 +0200
commit72a6287a5f1784b6da091c1ef1cc3cb3c1153d05 (patch)
treef16e793961983e1baa2ba66c36b87c98c36b74f3 /.github/workflows/ci.yml
parente2f3a5e5192ba9e28d51c39c258a37003cc9acb0 (diff)
parent7a40c4584e9118e1b218ff7c424e524b046abfbc (diff)
Merge pull request #275 from perillo/heal-only-in-test
Heal only in test
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml36
1 files changed, 18 insertions, 18 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index ab821c6..d071d8f 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -27,21 +27,21 @@ jobs:
- name: Check compatibility with old Zig compilers
run: ci/compat.sh
-# test:
-# name: Unit Tests
-# strategy:
-# matrix:
-# os: [ubuntu-latest, windows-latest, macos-latest]
-# runs-on: ${{ matrix.os }}
-# timeout-minutes: 30
-# steps:
-# - name: Checkout
-# uses: actions/checkout@v3
-#
-# - name: Setup Zig
-# uses: goto-bus-stop/setup-zig@v2
-# with:
-# version: master
-#
-# - name: Run unit tests
-# run: zig build test
+ test:
+ name: Unit Tests
+ strategy:
+ matrix:
+ os: [ubuntu-latest, windows-latest, macos-latest]
+ runs-on: ${{ matrix.os }}
+ timeout-minutes: 30
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v3
+
+ - name: Setup Zig
+ uses: goto-bus-stop/setup-zig@v2
+ with:
+ version: master
+
+ - name: Run unit tests
+ run: zig build test