Skip to content

Issue 63: Implementing SBC (#68) #217

Issue 63: Implementing SBC (#68)

Issue 63: Implementing SBC (#68) #217

Workflow file for this run

name: Workflow For Tests In Forecasttools
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
install-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: cache poetry
uses: actions/cache@v4
with:
path: ~/.local
key: ${{ runner.os }}-poetry
- name: install poetry
run: pip install poetry
- name: install package
run: poetry install --with test
- name: run tests
run: |
poetry run pytest