Skip to content

Write tests for PhasePredictor.time_at() #89

Write tests for PhasePredictor.time_at()

Write tests for PhasePredictor.time_at() #89

Workflow file for this run

name: Code style
on: [push, pull_request, workflow_dispatch]
jobs:
lint:
name: flake8
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install package and dependencies
run: |
python -m pip install --upgrade pip
pip install .
- name: Lint with flake8
run: |
pip install flake8
flake8 pulsarbat tests --show-source --statistics