diary

Text-based journaling program
git clone https://git.in0rdr.ch/diary.git
Log | Files | Refs | README | LICENSE

commit 4503317e2c1ac2a42ba6310730bc01b962790f92
parent 1e10a05f33d658fd82b1589024cab79e05270ce9
Author: Andreas Gruhler <agruhl@gmx.ch>
Date:   Fri,  9 Jul 2021 23:32:47 +0200

Update c-cpp.yml
Diffstat:
M.github/workflows/c-cpp.yml | 19++++++++++++-------
1 file changed, 12 insertions(+), 7 deletions(-)

diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml @@ -8,20 +8,25 @@ on: jobs: setup: - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [ubuntu-18.04, ubuntu-20.04] + runs-on: macos-latest steps: - - name: Install Ubuntu dependencies - run: sudo apt-get install libcurl4 libcurl4-gnutls-dev + - name: Check out repository + uses: actions/checkout@v2 + - name: make + run: make + - name: make install + run: make install + - name: check diary version + run: diary -v build: runs-on: ${{ matrix.os }} strategy: matrix: - os: [macos-latest, ubuntu-18.04, ubuntu-20.04] + os: [ubuntu-18.04, ubuntu-20.04] steps: + - name: Install Ubuntu dependencies + run: sudo apt-get install libcurl4 libcurl4-gnutls-dev - name: Check out repository uses: actions/checkout@v2 - name: make