summaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows
diff options
context:
space:
mode:
authorManlio Perillo <manlio.perillo@gmail.com>2023-05-02 11:06:58 +0200
committerManlio Perillo <manlio.perillo@gmail.com>2023-05-02 11:13:31 +0200
commit7a40c4584e9118e1b218ff7c424e524b046abfbc (patch)
tree2727e518ce4dccb153acccb77a130b2880ef2224 /.github/workflows
parent74b48192e4ab3f9b8dbc5ac1e40f295f88a976d8 (diff)
Restore unit tests
Diffstat (limited to '.github/workflows')
-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