From f57ca38c52ea500f9ec9f790a4e330ee1b7af364 Mon Sep 17 00:00:00 2001 From: Vincent Rischmann Date: Sun, 26 Nov 2023 16:56:52 +0100 Subject: ci: use checkout@v4 --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github') diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c70cc08..73730c5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -32,7 +32,7 @@ jobs: os: [ubuntu-latest, macos-latest, macos-12] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: true - uses: goto-bus-stop/setup-zig@v2 -- cgit v1.2.3 From 1175035c1a4932b8610004e8cd2394715e6555d8 Mon Sep 17 00:00:00 2001 From: Vincent Rischmann Date: Sun, 26 Nov 2023 17:17:34 +0100 Subject: ci: run tests with the -Dci flag --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github') diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 73730c5..9fcc881 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -49,7 +49,7 @@ jobs: restore-keys: ${{ runner.os }}-${{ matrix.os }}-zig- - name: Run Tests in memory - run: zig build test -Din_memory=true --summary all + run: zig build test -Dci=true -Din_memory=true --summary all - name: Build the example zigcrypto loadable extension run: zig build zigcrypto -- cgit v1.2.3