Skip to content

Update release_and_publish_pypi.yaml #315

Update release_and_publish_pypi.yaml

Update release_and_publish_pypi.yaml #315

Workflow file for this run

name: tests
on:
push:
branches: [main]
pull_request:
jobs:
test:
if: github.event.pull_request.merged == false
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
env:
PYTHON: ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v3
- name: set up python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install package
run: |
pip install ".[dev]"
pip install pandas # determinism test dependency
- name: Run mypy
run: mypy . --ignore-missing-imports
- name: Run black
run: |
black nrel tests --check
# Once all files have passed through pre-commit, the black check can be replaced by pre-commit:
# - name: Run pre-commit in CI
# uses: pre-commit/action@v3.0.0
- name: Python unit tests
run: |
pytest tests/ -v
- name: HIVE determinism test
run: |
python examples/test_for_determinism.py --iterations 2