Merge pull request #49 from NREL/pypiup #174
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: bird-CI | |
on: | |
push: | |
branches: [main] | |
paths-ignore: | |
- '*.md' | |
- 'README*' | |
- 'LICENSE' | |
- 'assets/*' | |
pull_request: | |
branches: [main] | |
paths-ignore: | |
- '*.md' | |
- 'README*' | |
- 'LICENSE' | |
- 'assets/*' | |
jobs: | |
Lint: | |
name: Lint (${{ matrix.python-version }}, ${{ matrix.os }}) | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ['3.10'] | |
os: ['ubuntu-latest'] | |
defaults: | |
run: | |
working-directory: ${{github.workspace}} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{matrix.python-version}} | |
- name: Install dependencies | |
run: | | |
pip install black | |
pip install isort | |
pip install codespell | |
- name: Formatting and sorting import | |
run: | | |
source .github/linters/formatting.sh | |
format . true | |
Test: | |
name: Test (${{ matrix.python-version }}, ${{ matrix.os }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ['3.10', '3.11', '3.12'] | |
os: ['ubuntu-latest', 'macos-latest'] | |
defaults: | |
run: | |
working-directory: ${{github.workspace}} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{matrix.python-version}} | |
- name: Install dependencies | |
run: | | |
pip install --upgrade pip | |
pip install . | |
pip install pytest | |
- name: Test preprocess | |
run: | | |
pytest tests/preprocess | |
- name: Test mesh | |
run: | | |
pytest tests/meshing | |
- name: Test postprocessing | |
run: | | |
pytest tests/postprocess |