Skip to content

Commit

Permalink
use make test target
Browse files Browse the repository at this point in the history
  • Loading branch information
bovine committed Jan 10, 2025
1 parent 872d875 commit 4dd26ab
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/linux-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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: |
Expand Down

0 comments on commit 4dd26ab

Please sign in to comment.