From 082d86df2dd7f998d6a8a3bc90dd87eefe1bdf61 Mon Sep 17 00:00:00 2001 From: Mark Delk Date: Mon, 18 Dec 2023 15:22:14 -0600 Subject: [PATCH] fix ci --- .github/workflows/holyc.yml | 28 +++++++++------------------- 1 file changed, 9 insertions(+), 19 deletions(-) diff --git a/.github/workflows/holyc.yml b/.github/workflows/holyc.yml index bc8e81a..20c3f5e 100644 --- a/.github/workflows/holyc.yml +++ b/.github/workflows/holyc.yml @@ -8,26 +8,16 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, macos-latest] + os: + - ubuntu-latest + - macos-latest steps: - uses: actions/checkout@v2 - - name: \[build\] lib/c - run: make -C lib/c + - name: lib/c + run: | + make -C lib/c test - - name: \[test\] lib/c - run: make -C lib/c test - - - - name: \[build\] lib/testing - run: make -C lib/c - - - name: \[test\] lib/testing - run: make -C lib/testing test - - - - name: \[build\] holyc - run: make holyc - - - name: \[test\] holyc - run: make test + - name: holyc + run: | + make