Skip to content

Commit 11150b3

Browse files
committed
Add GitHub Actions to run tests for bash-5.1 in a Docker container
1 parent 066ae71 commit 11150b3

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:5.1
10+
steps:
11+
- name: Checkout
12+
uses: actions/checkout@v4
13+
14+
- name: Setup Packages
15+
shell: bash
16+
run: |+
17+
apk update
18+
apk add build-base automake autoconf libtool texinfo
19+
20+
- name: Configure
21+
shell: bash
22+
run: bash ./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)