Skip to content

Fix issues identified by mypy (#265) #859

Fix issues identified by mypy (#265)

Fix issues identified by mypy (#265) #859

Workflow file for this run

name: Python Tests
on:
workflow_dispatch:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: ${{ matrix.os }} Python ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Surfactant
run: |
python -m pip install --upgrade pip
python -m pip install -e .[test]
surfactant version
- name: Test with pytest
run: |
pytest