Skip to content

Rename SimPSFToolkit.py module #144

Rename SimPSFToolkit.py module

Rename SimPSFToolkit.py module #144

Workflow file for this run

# This workflow will install Python dependencies, run tests, and lint with multiple versions of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: CI
on:
pull_request:
branches:
- main
- develop
jobs:
test-full:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10"]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: python -m pip install ".[test]"
- name: Test with pytest
run: python -m pytest
# Add Black formatter
- name: Install Black formatter
run: python -m pip install black
- name: Check code formatting with Black
run: black . --check --diff