ci: include tests in sources #3
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: Basic unittests | |
on: | |
push: | |
branches: | |
- master | |
- dev | |
jobs: | |
unittests: | |
name: Python ${{ matrix.python-version }} | |
runs-on: ubuntu-24.04 | |
strategy: | |
matrix: | |
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] | |
env: | |
POETRY_VIRTUALENVS_CREATE: false | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
python-version: ${{ matrix.python-version }} | |
- run: python3 -m pip install --user hypothesis pytest | |
- run: python3 -m pytest rubymarshal/tests |