commit fb384f373f14461ce2d817f6825986ce344e4b5a parent 062c5f082003b3c7f81100e710eb071823c9da9b Author: finwo <finwo@pm.me> Date: Thu, 3 Aug 2023 21:00:31 +0200 Update cc.yml workflow for testing to support dependencies Diffstat:
| M | .github/workflows/cc.yml | | | 29 | ++++++++++++++++++----------- |
1 file changed, 18 insertions(+), 11 deletions(-)
diff --git a/.github/workflows/cc.yml b/.github/workflows/cc.yml @@ -1,19 +1,26 @@ +--- + name: C/C++ CI -on: [push] +on: + - push jobs: build: runs-on: ubuntu-latest - + steps: - - uses: actions/checkout@v1 - # - name: configure - # run: ./configure - - name: make - run: make - - name: make check - run: make check - # - name: make distcheck - # run: make distcheck + - uses: actions/checkout@v1 + - name: Install @finwo/dep + uses: finwo/dep@edge + # - name: configure + # run: ./configure + - name: Install dependencies + run: dep i + - name: make + run: make + - name: make check + run: make check +# - name: make distcheck +# run: make distcheck