Skip to content

docs: Add LICENSE file #5

docs: Add LICENSE file

docs: Add LICENSE file #5

Workflow file for this run

# This workflow will install the xlsxreport package and its dependencies and run pytest with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Run pytest
on:
push:
branches: ["develop", "feature/*", "main", "release/*"]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/[email protected]
- name: Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[tests]
- name: Test with pytest
run: |
python -m pytest