Merge pull request #546 from vressegu/dev_tom #451
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: OF2006 | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- name: "OpenFOAM 2006" | |
install: "cd ." | |
compile: ./.compileOF2006.sh | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: install OF | |
run: ${{ matrix.install}} | |
- name: make | |
run: ${{ matrix.compile}} |