Skip to content

Merge pull request #20 from lvh/fractional-years-and-auto-open #14

Merge pull request #20 from lvh/fractional-years-and-auto-open

Merge pull request #20 from lvh/fractional-years-and-auto-open #14

Workflow file for this run

name: Python Test
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
with:
ref: ${{ github.ref }}
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Install pytest
run: python -m pip install pytest
- name: Run unit tests
run: pytest