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