Skip to content

Merge pull request #16 from Coffee-fueled-deadlines/Development #25

Merge pull request #16 from Coffee-fueled-deadlines/Development

Merge pull request #16 from Coffee-fueled-deadlines/Development #25

Workflow file for this run

name: PyDnD Tests
on:
push:
branches:
- main
- development
pull_request:
branches:
- main
- development
jobs:
build:
runs-on: ubuntu-latest # Using an older Ubuntu version for Python 3.6 support
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Run tests
run: |
python -m unittest discover -s tests