diff --git a/.github/workflows/ohno.yml b/.github/workflows/ohno.yml index 303c36c..8f4ee1b 100644 --- a/.github/workflows/ohno.yml +++ b/.github/workflows/ohno.yml @@ -3,6 +3,20 @@ name: ohno-tests on: [push] jobs: + cOHNObol: # Cobol slow as piss + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: install cobol + run: sudo apt install -y gnucobol + - name: compile cobol + run: cobc -o ohno.cbl.out -x OHNO/ohno.cbl + - name: cobol + run: ./ohno.cbl.out + + OHNO: runs-on: ubuntu-latest @@ -14,13 +28,6 @@ jobs: - name: brainfuck run: brainfucky --file OHNO/ohno.bf - - name: install cobol - uses: fabasoad/setup-cobol-action@v1.0.14 - - name: compile cobol - run: cobc -o ohno.cbl.out -x OHNO/ohno.cbl - - name: cobol - run: ./ohno.cbl.out - - name: install java uses: actions/setup-java@v1 with: