Skip to content

WIP

WIP #1885

Workflow file for this run

name: "CI"
"on":
push:
pull_request:
branches:
- main
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Run pre-commit
uses: pre-commit/action@v3.0.1
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: "0.5.x"
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install packages for testing
run: uv sync --dev
- name: Run tests
run: |
uv run playwright install
uv run make test
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: "0.5.x"
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install packages for testing
run: uv sync --dev
- name: Run tests
run: |
uv run make typing
build:
runs-on: ubuntu-latest
needs: [test]
timeout-minutes: 20
# Only do Docker builds of tagged releases and pull requests from ticket
# branches. This will still trigger on pull requests from untrusted
# repositories whose branch names match our tickets/* branch convention,
# but in this case the build will fail with an error since the secret
# won't be set.
if: >
github.event_name != 'merge_group'
&& (startsWith(github.ref, 'refs/tags/')
|| startsWith(github.head_ref, 'tickets/'))
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: lsst-sqre/build-and-push-to-ghcr@tickets/DM-48192
id: build-service
with:
dockerfile: docker/Dockerfile
target: cmservice
build-args: |
"PYTHON_VERSION=3.11"
"UV_VERSION=0.5"
image: ${{ github.repository }}
push: false
additional-tags:
- latest

Check failure on line 106 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yaml (Line: 106, Col: 13): A sequence was not expected
- "0"
- "0.1"
github_token: ${{ secrets.GITHUB_TOKEN }}
# - uses: lsst-sqre/build-and-push-to-ghcr@tickets/DM-48192
# id: build-worker
# with:
# dockerfile: docker/Dockerfile
# target: cmworker
# build-args: |
# "PYTHON_VERSION=3.11"
# "UV_VERSION=0.5"
# image: ${{ github.repository }}
# github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Report result
run: |
echo Pushed ghcr.io/${{ github.repository }}:${{ steps.build-service.outputs.tag }}