Merge pull request #5 from yasirroni/add_zenodo_matpower #19
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: build | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
linters: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
cache: 'pip' | |
cache-dependency-path: 'requirements-dev.txt' | |
- name: ruff | |
run: | | |
python -m pip install --upgrade pip | |
pip install ruff | |
ruff --format=github . | |
build: | |
strategy: | |
matrix: | |
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] | |
platform: [octave] | |
os: [ubuntu-latest] | |
runs-on: ${{matrix.os}} | |
steps: | |
- name: Clone this repository | |
uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'pip' | |
cache-dependency-path: 'requirements-dev.txt' | |
- name: Install Octave (Linux) | |
if: matrix.platform == 'octave' | |
uses: MATPOWER/action-install-octave-linux@v1 | |
- name: Install requirements | |
run: | | |
pip install -r requirements-dev.txt | |
- name: Install package | |
run: | | |
pip install -e . | |
- name: Generate coverage report | |
run: | | |
pytest -vvv -n auto --cov=matpowercaseframes --cov-report=xml:unit.coverage.xml | |
# - name: Upload unit test coverage to Codecov | |
# uses: codecov/codecov-action@v1 | |
# with: | |
# token: ${{ secrets.CODECOV_TOKEN }} | |
# file: ./unit.coverage.xml | |
# flags: unit | |
# env_vars: PYTHON | |
# name: codecov-unit | |
# fail_ci_if_error: false |