Adding tests and test crumbs for settings and bookkeeping (#1542) #3860
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 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: Install deps | |
run: python -m pip install tox tox-gh-actions | |
- name: Run Tox | |
run: tox -e test |