Merge pull request #292 from NREL/rjf/string-road-class #592
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: Python build and test on push + pull request | |
on: | |
push: | |
branches: [main] | |
paths-ignore: | |
- "docs/**" | |
- "**.md" | |
pull_request: | |
branches: [main] | |
paths-ignore: | |
- "docs/**" | |
- "**.md" | |
jobs: | |
test: | |
if: github.event.pull_request.merged == false | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.9", "3.10", "3.11", "3.12"] | |
env: | |
PYTHON: ${{ matrix.python-version }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: set up python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install package | |
run: | | |
pip install ".[all]" | |
- name: Run mypy | |
run: mypy . | |
- name: Run linter | |
run: | | |
ruff check | |
- name: Run formatter | |
run: | | |
ruff format | |
- name: Run tests | |
run: | | |
pytest python/tests |