Skip to content

Disable compatability check because of release deadlock #25

Disable compatability check because of release deadlock

Disable compatability check because of release deadlock #25

Workflow file for this run

name: Release Package
# Triggers the workflow on push of a tag
on:
push:
tags:
- "*"
jobs:
lint-unit-test:
uses: ./.github/workflows/lint-unit-test.yml
with:
os: "ubuntu-latest"
python-version: "3.8"
secrets: inherit
# checks zenml and mlstacks can be installed together in same environment
# compatibility-check:
# needs: lint-unit-test
# runs-on: ubuntu-latest
# steps:
# - name: Checkout code
# uses: actions/checkout@v2
# - name: Set up Python
# uses: actions/setup-python@v2
# with:
# python-version: "3.8"
# - name: Install current package as editable
# run: pip install -e .
# - name: Install zenml package
# run: pip install zenml
# - name: Check for broken dependencies
# run: pip check
publish-python-package:
needs: [lint-unit-test, compatibility-check]

Check failure on line 40 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / Release Package

Invalid workflow file

The workflow is not valid. .github/workflows/release.yml (Line: 40, Col: 29): Job 'publish-python-package' depends on unknown job 'compatibility-check'.
uses: ./.github/workflows/publish-pypi-package.yml
secrets: inherit