From 4f0fd1314750fe82dbd09068f2f32d944d1d1823 Mon Sep 17 00:00:00 2001 From: Lily Wang <31115101+lilyminium@users.noreply.github.com> Date: Sat, 22 Jun 2024 18:56:44 +1000 Subject: [PATCH] Fix pylint? (#130) * first trigger just pylint * re-check all tests * upgrade act version * manually specify jobs separately --- .github/actions/run-cookie-ci/action.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/actions/run-cookie-ci/action.yaml b/.github/actions/run-cookie-ci/action.yaml index 1f743b3..f300a52 100644 --- a/.github/actions/run-cookie-ci/action.yaml +++ b/.github/actions/run-cookie-ci/action.yaml @@ -45,7 +45,7 @@ runs: - name: Install act uses: actionsflow/setup-act@v1 with: - version: '0.2.62' + version: '0.2.63' - name: Build Act image shell: bash @@ -59,4 +59,6 @@ runs: docker images sed -i -e 's/fail_ci_if_error: true/fail_ci_if_error: false/g' .github/workflows/gh-ci.yaml cat .github/workflows/gh-ci.yaml - act --job main-tests --platform ubuntu-latest=act-conda -s CODECOV_TOKEN=${{ inputs.CODECOV_TOKEN }} -p=false + act --job main-tests --platform ubuntu-latest=act-conda -s CODECOV_TOKEN=${{ inputs.CODECOV_TOKEN }} -p=false --matrix os:ubuntu-latest + act --job pylint_check --platform ubuntu-latest=act-conda -s CODECOV_TOKEN=${{ inputs.CODECOV_TOKEN }} -p=false + act --job pypi_check --platform ubuntu-latest=act-conda -s CODECOV_TOKEN=${{ inputs.CODECOV_TOKEN }} -p=false