Skip to content

- fix small typo

- fix small typo #2

Workflow file for this run

name: Last Commit
on: [push]
jobs:
tests:
strategy:
fail-fast: false
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: 'setup.py'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flask pytest pytest-cov
python -m pip install -e .
- name: Test with pytest
run: |
pytest --cov=dfttk --cov-report=xml