Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
aPere3 committed Dec 9, 2024
1 parent f324816 commit 5d1fea8
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/concrete_python_tests_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,10 @@ jobs:
SLACK_MESSAGE: "build-python-bindings finished with status: ${{ job.status }}. (${{ env.ACTION_RUN_URL }})"

test-apidoc-up-to-date:
needs: [ build-python-bindings ]
needs: [build-python-bindings]
runs-on: ubuntu-latest
env:
python-version: 3.8
python-version: 3.10
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
Expand All @@ -146,7 +146,10 @@ jobs:
- name: Check documentation
run: |

Check failure on line 147 in .github/workflows/concrete_python_tests_linux.yml

View workflow job for this annotation

GitHub Actions / action-lint

shellcheck reported issue in this script: SC2086:info:4:6: Double quote to prevent globbing and word splitting
WHEEL_DIR=${{ github.workspace }}/wheel
CONCRETE_WHEEL="${WHEEL_DIR}/*.whl" .github/workflows/scripts/make_apidocs.sh
echo $WHEEL_DIR
CONCRETE_WHEEL="${WHEEL_DIR}/*.whl"
echo $CONCRETE_WHEEL
.github/workflows/scripts/make_apidocs.sh
- name: Upload docs.patch if failure
if: ${{ failure() }}
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
Expand Down

0 comments on commit 5d1fea8

Please sign in to comment.