Skip to content

📝 make Changelog template shorter, move symbols to category names #32

📝 make Changelog template shorter, move symbols to category names

📝 make Changelog template shorter, move symbols to category names #32

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.9"
- "3.10"
- "3.12"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Install poetry
run: pipx install poetry
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
cache: poetry
- name: Install dependencies
run: poetry install
- name: Run tests
run: |
poetry run xonsh -c "xontrib load cd"
poetry run pytest