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 6f3a875 commit c7b9fa4Copy full SHA for c7b9fa4
.github/workflows/workflow.yml
@@ -0,0 +1,31 @@
1
+name: NIST COBOL85 tests
2
+on: [push]
3
+jobs:
4
+ check-bats-version:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ # Checkout opensource COBOL
8
+ - name: Checkout opensource COBOL
9
+ uses: actions/checkout@v2
10
+
11
+ - name: Install dependencies
12
+ run: |
13
+ sudo apt-get update
14
+ sudo apt-get install -y build-essential libncurses5 libncurses5-dev libgmp-dev bison flex gettext automake autoconf
15
16
+ - name: Install opensource COBOL
17
18
+ cd vbisam
19
+ ./configure --prefix=/usr/
20
+ sudo make install
21
+ cd ../
22
+ ./configure --prefix=/usr/ --with-vbisam
23
24
25
+ - name: run NIST tests
26
27
+ cd tests/cobol85
28
+ make test
29
30
31
0 commit comments