Skip to content

Commit

Permalink
Run tests for bash-4.4 in a Docker container
Browse files Browse the repository at this point in the history
  • Loading branch information
jansorg committed Jun 17, 2024
1 parent 0533638 commit b56b32d
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: "bashdb CI"
on:
push:

jobs:
linux:
name: "Linux"
runs-on: ubuntu-latest
container: bash:4.4
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Packages
shell: bash
run: |+
sudo apt -y update
sudo apt -y install autoconf automake texinfo
- name: Configure
shell: bash
run: sh ./autogen.sh

- name: Test
shell: bash
env:
VERBOSE: 1
run: make -e -j3 check

0 comments on commit b56b32d

Please sign in to comment.