diary

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

commit 44038fb2826822035587536b57b5d423935f65bf
parent 823189676017ce5e34b74fb190b32a8e016329e9
Author: Andreas Gruhler <agruhl@gmx.ch>
Date:   Fri,  9 Jul 2021 23:08:42 +0200

Update c-cpp.yml
Diffstat:
M.github/workflows/c-cpp.yml | 13+++++++++----
1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml @@ -9,12 +9,17 @@ on: jobs: build: - runs-on: macos-latest + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [macos-latest, ubuntu-18.04, ubuntu-20.04] steps: + - name: Check out repository + uses: actions/checkout@v2 - name: make run: make - - name: make check - run: make check + - name: make install + run: make install - name: check diary version - run: ./diary -v + run: diary -v