Create python-publish.yml #55
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run FissionMunk Unit Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] | |
os: [ubuntu-latest, macOS-latest, windows-latest] | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 # Updated to the latest version | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 # Updated to the latest version | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install pymunk | |
python -m pip install pytest | |
working-directory: .. | |
- name: Run tests | |
run: | | |
pytest ./tests/ | |