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 066ae71 commit 11150b3Copy full SHA for 11150b3
.github/workflows/CI.yml
@@ -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
22
+ run: bash ./autogen.sh
23
24
+ - name: Test
25
26
+ env:
27
+ VERBOSE: 1
28
+ run: make -e -j3 check
0 commit comments