Skip to content

add debug image publishing #20

add debug image publishing

add debug image publishing #20

Workflow file for this run

name: CI
on:
push:
branches:
- main
tags:
- '*'
pull_request:
jobs:
lint:
uses: ./.github/workflows/_tox.yml
with:
tox: pre-commit,type-checking
test:
strategy:
matrix:
runs-on: ["ubuntu-latest"] # can add windows-latest, macos-latest
python-version: ["3.11", "3.12", "3.13"]
include:
# Include one that runs in the dev environment
- runs-on: "ubuntu-latest"
python-version: "dev"
fail-fast: false
uses: ./.github/workflows/_test.yml
with:
runs-on: ${{ matrix.runs-on }}
python-version: ${{ matrix.python-version }}
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
container:
needs: test
if: always()
uses: ./.github/workflows/_container.yml

Check failure on line 38 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

error parsing called workflow ".github/workflows/ci.yml" -> "./.github/workflows/_container.yml" (source tag with sha:b2518cb06c85636a6343c900e4a7de70feb8c61e) : (Line: 67, Col: 13): The identifier 'meta' may not be used more than once within the same scope.
with:
publish: ${{ needs.test.result == 'success' }}
permissions:
contents: read
packages: write
dist:
uses: ./.github/workflows/_dist.yml
release:
needs: [dist, test]
if: github.ref_type == 'tag'
uses: ./.github/workflows/_release.yml
permissions:
contents: write