DONT MERGE THIS #632
Workflow file for this run
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: Tests | |
on: | |
# Triggers the workflow on pushes to the master branch | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ devel ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Setup environment | |
uses: mamba-org/setup-micromamba@v1 | |
with: | |
environment-name: moose | |
condarc: | | |
channels: | |
- conda-forge | |
- https://conda.software.inl.gov/public | |
init-shell: bash | |
create-args: moose-dev | |
- name: Compile RACCOON | |
shell: bash -el {0} | |
run: | | |
make -j 2 | |
- name: Regression tests | |
shell: bash -l {0} | |
run: ./run_tests -j 2 |