Rearrange to prevent possible crash from overflow error in case of wr… #43
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: CI | |
on: | |
push: | |
branches: [ plasma3D ] | |
pull_request: | |
branches: [ plasma3D ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Pull Docker image | |
run: docker pull plasmapotential/heat:v4.0 | |
- name: Run simple CI configuration test | |
run: docker run -v ${{ github.workspace }}:/root/source/HEAT plasmapotential/heat:v4.0 python3 /root/source/HEAT/tests/integrationTests/ciTest.py | |
- name: NSTX-U Optical HEAT Calculation | |
run: docker run -v ${{ github.workspace }}:/root/source/HEAT plasmapotential/heat:v4.0 /root/source/HEAT/source/runTerminalModeTestOptical | |
# - name: NSTX-U Gyro-orbit HEAT Calculation | |
# run: docker run -v ${{ github.workspace }}:/root/source/HEAT plasmapotential/heat:v4.0 /root/source/HEAT/source/runTerminalModeTestGyro | |
# | |
# - name: NSTX-U Photon Radiation HEAT Calculation | |
# run: docker run -v ${{ github.workspace }}:/root/source/HEAT plasmapotential/heat:v4.0 /root/source/HEAT/source/runTerminalModeTestRad | |