Skip to content

Merge pull request #26 from lsst/tickets/DM-26063 #563

Merge pull request #26 from lsst/tickets/DM-26063

Merge pull request #26 from lsst/tickets/DM-26063 #563

Workflow file for this run

name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Build and install wheel
run: |
pip install virtualenv
test/test_wheel_install.sh
# TODO: Add lint and test steps once we actually pass these tests. Crib from
# https://github.com/lsst/daf_butler/blob/main/.github/workflows/lint.yaml.