mirror of
https://github.com/daylinmorgan/viv.git
synced 2024-11-09 19:13:14 -06:00
31 lines
529 B
YAML
31 lines
529 B
YAML
name: 🧪 Run Tests
|
|
on:
|
|
push:
|
|
workflow_call:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
run-tests:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
python-version:
|
|
- '3.8'
|
|
- '3.9'
|
|
- '3.10'
|
|
- '3.11'
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up PDM
|
|
uses: pdm-project/setup-pdm@v3
|
|
with:
|
|
python-version: ${{ matrix.python-version}}
|
|
|
|
- name: Install dependencies
|
|
run: pdm sync -d -G test
|
|
|
|
- name: Run Tests
|
|
run: pdm run -v pytest tests
|
|
|
|
|