Skip to content

Commit baccfdb

Browse files
committed
test
Signed-off-by: Kevin Su <[email protected]>
1 parent eaccdb6 commit baccfdb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/checks_new.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- uses: actions/checkout@v2
2424
- name: "Provide the list"
2525
id: create-example-list
26-
run: echo "PACKAGES=$(find examples -mindepth 1 -maxdepth 2 -type f -name Dockerfile -exec dirname '{}' \; | sort | sed 's/examples\///' | jq --raw-input . | jq --slurp . | jq -c .)" >> "$GITHUB_OUTPUT"
26+
run: echo "PACKAGES=$(find examples -maxdepth 1 -type d -exec basename '{}' \; | grep -v -e 'testing' | sort | jq --raw-input . | jq --slurp . | jq -c .)" >> "$GITHUB_OUTPUT"
2727
outputs:
2828
packages: "${{ steps.create-example-list.outputs.PACKAGES }}"
2929
serialize_examples:
@@ -49,7 +49,7 @@ jobs:
4949
key: ${{ format('{0}-pip-{1}', runner.os, hashFiles('dev-requirements.in', 'requirements.in')) }}
5050
- name: Install dependencies
5151
run: |
52-
sudo apt install python3-packaging
52+
sudo apt-get update && sudo apt install python3-packaging
5353
pip install uv
5454
uv venv
5555
source .venv/bin/activate

0 commit comments

Comments
 (0)