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 b56b32dCopy full SHA for b56b32d
.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: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
22
+ run: sh ./autogen.sh
23
24
+ - name: Test
25
26
+ env:
27
+ VERBOSE: 1
28
+ run: make -e -j3 check
0 commit comments