Skip to content

Update README.md

Update README.md #58

Workflow file for this run

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/