Skip to content

feat: Publish debug container image and account-sync sidecar #813

feat: Publish debug container image and account-sync sidecar

feat: Publish debug container image and account-sync sidecar #813

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
check:
uses: ./.github/workflows/_check.yml
lint:
needs: check
if: needs.check.outputs.branch-pr == ''
uses: ./.github/workflows/_tox.yml
with:
tox: pre-commit
test:
needs: check
if: needs.check.outputs.branch-pr == ''
uses: ./.github/workflows/_test.yml
with:
python-version: dev
runs-on: ubuntu-latest
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
docs:
needs: check
if: needs.check.outputs.branch-pr == ''
uses: ./.github/workflows/_docs.yml
permissions:
contents: write
example:
needs: test
if: github.ref_name == 'main'
uses: ./.github/workflows/_example.yml
secrets:
EXAMPLE_DEPLOY_KEY: ${{ secrets.EXAMPLE_DEPLOY_KEY }}
release:
if: github.ref_type == 'tag'
needs: docs
uses: ./.github/workflows/_release.yml
permissions:
contents: write
release-account-sync:
if: github.ref_type == 'tag'
needs: release
uses: ./.github/workflows/_account_sync.yml
permissions:
contents: write