-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8dfd993
commit 627a0e7
Showing
2 changed files
with
35 additions
and
7 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: ARMI Windows Tests | ||
|
||
on: | ||
push: | ||
paths-ignore: | ||
- 'doc/**' | ||
pull_request: | ||
paths-ignore: | ||
- 'doc/**' | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: windows-2022 | ||
|
||
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 Windows | ||
run: | | ||
pip install -e .[memprof,mpi,test] | ||
pytest -n 4 armi | ||
- name: Find Test Crumbs | ||
run: python .github/workflows/find_test_crumbs.py |