We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0533638 commit aaaaf71Copy full SHA for aaaaf71
.github/workflows/CI.yml
@@ -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 autoconf automake texinfo
18
19
+ - name: Configure
20
21
+ run: sh ./autogen.sh
22
23
+ - name: Test
24
25
+ env:
26
+ VERBOSE: 1
27
+ run: make -e -j3 check
0 commit comments