Skip to content

ci: disable concurrency (#46) #141

ci: disable concurrency (#46)

ci: disable concurrency (#46) #141

Workflow file for this run

name: PyPI
on:
workflow_dispatch:
push:
branches:
- master
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