Skip to content

Commit

Permalink
ci: add check for build of golang binary
Browse files Browse the repository at this point in the history
  • Loading branch information
consideRatio committed Sep 22, 2023
1 parent ad966e8 commit 8f62dad
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,23 @@ jobs:
- name: Install Python test requirements
run: |
pip install -r tests/requirements.txt
pip list
- name: List Python dependencies
run: |
pip freeze
- name: Check that golang binary was built
run: |
echo "As part of installing dask-gateway-server, a golang binary"
echo "should be built and bundled, this checks that it was."
FILE=dask-gateway-server/dask_gateway_server/proxy/dask-gateway-proxy
if [ -f "$FILE" ]; then
echo "$FILE exists."
else
echo "$FILE does not exist."
exit 1
fi
- name: Run Python tests
run: |
Expand Down

0 comments on commit 8f62dad

Please sign in to comment.