Merge pull request #114 from NREL/TableDiffPathIssue #79
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: 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 }} |