Skip to content

Commit b56b32d

Browse files
committed
Run tests for bash-4.4 in a Docker container
1 parent 0533638 commit b56b32d

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/CI.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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+
sudo apt -y update
18+
sudo apt -y install autoconf automake texinfo
19+
20+
- name: Configure
21+
shell: bash
22+
run: sh ./autogen.sh
23+
24+
- name: Test
25+
shell: bash
26+
env:
27+
VERBOSE: 1
28+
run: make -e -j3 check

0 commit comments

Comments
 (0)