Skip to content

Bugfix: first billable date (#4) #69

Bugfix: first billable date (#4)

Bugfix: first billable date (#4) #69

Workflow file for this run

name: Tests
on: [push]
env:
COLUMNS: 120
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: pyproject.toml
- name: Install dependencies
run: |
pip install '.[test]'
- name: Test with pytest
env:
PY_IGNORE_IMPORTMISMATCH: 1
run: |
pytest --doctest-modules toggl_tally