Skip to content

Update README.md

Update README.md #151

Workflow file for this run

name: run-test
on:
push:
branches: [master, dev]
pull_request:
branches: [master, dev]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
run_tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.9"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip" # caching pip dependencies
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
pip install pycolmap
pip install einops
- name: Test with pytest
run: |
pytest