Skip to content

refactor: master->main for links and ci (#50) #146

refactor: master->main for links and ci (#50)

refactor: master->main for links and ci (#50) #146

Workflow file for this run

name: PyPI
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
types: [opened, reopened, synchronize]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7"]
steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install camtools
- name: Run simple import tests
run: |
python -c "import camtools; print(camtools.__version__)"
ct --help