Skip to content

Name in README

Name in README #361

Workflow file for this run

name: Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
concurrency:
group: test-${{ github.head_ref }}
cancel-in-progress: true
env:
PYTHONUNBUFFERED: "1"
FORCE_COLOR: "1"
PYTHONIOENCODING: "utf8"
jobs:
run:
name: Python ${{ matrix.python-version }} on ${{ startsWith(matrix.os, 'macos-') && 'macOS' || startsWith(matrix.os, 'windows-') && 'Windows' || 'Linux' }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-12]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install PyTest
run: |
if [ "$RUNNER_OS" == "Windows" ]; then
pip install pytest pytest-asyncio
else
pip install pytest pytest-asyncio pytest-memray
fi
shell: bash
- name: Build project
run: pip install .[full]
- name: Run tests
run: |
if [ "$RUNNER_OS" == "Windows" ]; then
pytest
else
pytest --memray
fi
shell: bash