-
Notifications
You must be signed in to change notification settings - Fork 45
40 lines (33 loc) · 863 Bytes
/
tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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