Skip to content

Commit

Permalink
display version in backend tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenfiszel committed Oct 12, 2024
1 parent 4112eb6 commit 8867260
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/DockerfileBackendTests
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ ARG TARGETPLATFORM
RUN curl -Lsf https://github.com/denoland/deno/releases/download/v2.0.0/deno-x86_64-unknown-linux-gnu.zip -o deno.zip
# RUN [ "$TARGETPLATFORM" == "linux/arm64" ] && curl -Lsf https://github.com/denoland/deno/releases/download/v2.0.0/deno-aarch64-unknown-linux-gnu.zip -o deno.zip || true

RUN unzip deno.zip && rm deno.zip
RUN unzip deno.zip && rm deno.zip && mv deno /usr/bin/deno

RUN apt-get update \
&& apt-get install -y postgresql-client --allow-unauthenticated
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/backend-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ jobs:
- name: cargo test
timeout-minutes: 15
run:
/usr/bin/deno --version &&
/usr/bin/bun -v &&
go version &&
/usr/local/bin/python3 --version &&
mkdir frontend/build && cd backend && touch
windmill-api/openapi-deref.yaml &&
DATABASE_URL=postgres://postgres:changeme@postgres:5432/windmill
Expand Down

0 comments on commit 8867260

Please sign in to comment.