From 4dd26ab126653789c33c3e16380065fcb195f29c Mon Sep 17 00:00:00 2001 From: Jeff Lawson Date: Fri, 10 Jan 2025 20:10:55 +0000 Subject: [PATCH] use `make test` target --- .github/workflows/linux-ci.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/linux-ci.yml b/.github/workflows/linux-ci.yml index 01cfadd..347b482 100644 --- a/.github/workflows/linux-ci.yml +++ b/.github/workflows/linux-ci.yml @@ -25,19 +25,19 @@ jobs: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v2 - - name: Install dependencies + - name: Install dependencies run: | sudo apt-get update -qq sudo apt-get install -y tcl8.6-dev - - name: configure + - name: configure run: | autoconf autoreconf -iv cd unix ../configure --with-tcl=/usr/lib/tcl8.6 - - name: make + - name: make run: | cd unix make @@ -47,7 +47,8 @@ jobs: # current time and time-zone: echo $TZ; timedatectl status # load local library and execute local test cases: - tclsh tests/all.tcl + cd unix + make test - name: install run: |