Skip to content

Commit eaff97c

Browse files
committed
experiment to run tests for bash-4.4 in a Docker container
1 parent 0533638 commit eaff97c

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/CI.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: "bashdb CI"
2+
on:
3+
push:
4+
5+
jobs:
6+
linux:
7+
name: "Linux"
8+
runs-on: ubuntu-latest
9+
container: bash:4.4
10+
steps:
11+
- name: Checkout
12+
uses: actions/checkout@v4
13+
14+
- name: Setup Packages
15+
shell: bash
16+
run: |+
17+
apk add build-base automake autoconf libtool
18+
19+
- name: Configure
20+
shell: bash
21+
run: sh ./autogen.sh
22+
23+
- name: Test
24+
shell: bash
25+
env:
26+
VERBOSE: 1
27+
run: make -e -j3 check

0 commit comments

Comments
 (0)