Skip to content

Merge pull request #113 from NREL/FixBS4Version #77

Merge pull request #113 from NREL/FixBS4Version

Merge pull request #113 from NREL/FixBS4Version #77

Workflow file for this run

name: Run Tests
on: [push]
defaults:
run:
shell: bash
jobs:
unit_tests:
strategy:
matrix:
os: [ windows-latest, macos-latest, ubuntu-24.04 ] # macos-12 is not playing well with Tk
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install Pip Dependencies
run: pip install -r requirements.txt
- name: Run Tests
run: coverage run -m pytest && coverage report
- name: Coveralls
run: coveralls --service=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}