Skip to content
This repository was archived by the owner on Aug 30, 2025. It is now read-only.

Commit 4421b7c

Browse files
committed
compose smoketest
1 parent 78ea118 commit 4421b7c

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: docker compose smoketest
2+
3+
on:
4+
push:
5+
branches: ["main"]
6+
pull_request:
7+
branches: ["main", "dev"]
8+
9+
jobs:
10+
deploy_compose:
11+
runs-on: ubuntu-latest
12+
timeout-minutes: 10
13+
steps:
14+
- name: Checkout code
15+
uses: actions/checkout@v4
16+
- uses: Swatinem/rust-cache@v2
17+
with:
18+
cache-all-crates: "true"
19+
prefix-key: "ubuntu-latest"
20+
- name: Create .env file
21+
run: cp compose-example.env .env
22+
- name: Docker Compose Action
23+
uses: hoverkraft-tech/[email protected]
24+
with:
25+
compose-file: "compose.yaml"
26+
up-flags: "--build"
27+
down-flags: "-v"

0 commit comments

Comments
 (0)