From c36d3e10f8e04ea325d5e543b194c386579ff117 Mon Sep 17 00:00:00 2001 From: Mihir Patel Date: Thu, 21 Mar 2024 13:49:14 -0700 Subject: [PATCH] fix --- .github/workflows/release.yaml | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index e96144173a..7c5894d6f3 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -8,7 +8,7 @@ on: jobs: code-quality: - uses: mosaicml/ci-testing/.github/actions/code-quality.yaml@v0.0.4 + runs-on: ubuntu-20.04 strategy: matrix: python_version: @@ -17,9 +17,19 @@ jobs: - "3.11" pip_deps: - "[dev]" - with: - python_version: ${{ matrix.python_version }} - pip_deps: ${{ matrix.pip_deps }} + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Get composite run steps repository + uses: actions/checkout@v3 + with: + repository: mosaicml/ci-testing + ref: v0.0.4 + path: ./ci-testing + - uses: ./ci-testing/.github/actions/code-quality + with: + python_version: ${{ matrix.python_version }} + pip_deps: ${{ matrix.pip_deps }} pypi-packaging: name: Build and Publish mosaicml PyPI Package