Skip to content

clarify license

clarify license #79

Workflow file for this run

name: CI
on:
push:
pull_request:
workflow_dispatch:
# schedule:
# - cron: '42 5 * * *'
jobs:
test:
strategy:
fail-fast: false
matrix:
runner: [ubuntu-latest, macos-latest] #, windows-latest]
python-version: ["3.10", "3.11"]
runs-on: ${{matrix.runner}}
name: OS ${{matrix.runner}} Python ${{matrix.python-version}}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -r dev-requirements.txt -c constraints.txt
- name: Check Python version
run: python -V
- name: Test with pytest
run: |
pytest -v --cov=slider/ --cache-clear
flake8
# - name: Coveralls
# if: ${{ success() && matrix.runner == 'ubuntu-latest' && matrix.python-version == '3.11' }}
# run: coveralls