Skip to content

Adding phase retrieval #158

Adding phase retrieval

Adding phase retrieval #158

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
linter_name:
name: Run Black formatter
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Run Black formatter
uses: rickstaa/action-black@v1
with:
black_args: ". --check"