Skip to content

expanded help

expanded help #19

Workflow file for this run

name: Testing
on:
push:
pull_request:
jobs:
testing:
strategy:
matrix:
os:
- ubuntu-latest
#- macos-latest
#- windows-latest
python-version:
# - "3.8"
- "3.9"
- "3.10"
- "3.11"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: pyproject.toml
# - uses: pre-commit/[email protected]
- name: Install dependencies
run: pip install ".[dev]"
- name: Run tests
run: |
xonsh -c "xontrib load chatgpt"
xonsh -c "pytest tests/"