Skip to content

Run GitHub Actions workflow on Linux and macOS #68

Run GitHub Actions workflow on Linux and macOS

Run GitHub Actions workflow on Linux and macOS #68

Workflow file for this run

name: "bashdb CI"
on:
push:
jobs:
tests:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
name: "Test ${{ matrix.os }}"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies for Linux
if: matrix.os == 'ubuntu-latest'
shell: bash
run: |+
sudo apt -y update
sudo apt -y install autoconf automake texinfo
- name: Install dependencies for macOS
if: matrix.os == 'macos-latest'
shell: bash
run: |+
brew update
brew install autoconf automake texinfo
which autoconf
which automake
echo $PATH
- name: Configure
shell: bash
run: sh ./autogen.sh
- name: Test
shell: bash
env:
VERBOSE: 1
run: make -e -j3 check