Fix scaling of edge assembly VOLUME_INTEGRATED
parameters in third core periodic symmetry
#1627
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: ARMI MacOS Tests | |
permissions: | |
contents: read | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- 'doc/**' | |
pull_request: | |
paths-ignore: | |
- 'doc/**' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.11' | |
- name: Upgrade PIP | |
run: python -m pip install --upgrade pip | |
- name: Run Unit Tests on MacOS | |
run: | | |
brew install openmpi | |
pip install -e .[memprof,mpi,test] | |
pytest -n 4 armi |