Skip to content

Bump softprops/action-gh-release from 1 to 2 #41

Bump softprops/action-gh-release from 1 to 2

Bump softprops/action-gh-release from 1 to 2 #41

---
name: Functional Tests (Local)
on: # yamllint disable-line rule:truthy
pull_request:
defaults:
run:
shell: sh
jobs:
run-script:
name: Run script
timeout-minutes: 5
strategy:
fail-fast: false
matrix:
version: ["3.1.2", "3.0-rc1", "3.1-rc1", "3.1.1"]
runs-on: ubuntu-latest
steps:
- name: Checkout ${{ github.repository }}
uses: actions/checkout@v4
- name: Setup COBOL
uses: ./
with:
version: ${{ matrix.version }}
- name: Validate script
run: |
cobc -x ./HelloWorld.cob
[ "$(./HelloWorld)" = "Hello World!" ] || exit 1;