Skip to content

example notebook focused on fuel mix #65

example notebook focused on fuel mix

example notebook focused on fuel mix #65

Workflow file for this run

name: Tests
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
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 Poetry
uses: snok/install-poetry@v1
- name: Install dependencies
run: |
poetry install
- name: Run unit tests
env:
GRIDSTATUS_API_KEY_TEST: ${{ secrets.GRIDSTATUS_API_KEY_TEST }}
run: |
make test