Skip to content

Commit fec87e4

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

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/CI.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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: Configure
15+
shell: bash
16+
run: sh ./autogen.sh
17+
18+
- name: Test
19+
shell: bash
20+
env:
21+
VERBOSE: 1
22+
run: make -e -j3 check

0 commit comments

Comments
 (0)