Skip to content

Wip/bundle adjustment #28

Wip/bundle adjustment

Wip/bundle adjustment #28

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
jobs:
linters:
runs-on: windows-latest
strategy:
matrix:
python-version: [ '3.8' ]
steps:
- 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 -e .[linters] --no-cache-dir
- name: Run interrogate
run: interrogate parallax tests
continue-on-error: true
- name: Run flake8
run: flake8 parallax tests
continue-on-error: true