Skip to content

Commit 8e5e77e

Browse files
committed
Add check for BeeAI container builds
... through GitHub Actions. Signed-off-by: Siteshwar Vashisht <[email protected]>
1 parent 22cdad9 commit 8e5e77e

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: BeeAI container builds
2+
on:
3+
push:
4+
branches: [main]
5+
pull_request:
6+
branches: [main]
7+
jobs:
8+
beeai-make-build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Install packages required
12+
run: |
13+
sudo apt-get install -y podman podman-compose
14+
15+
- name: Checkout Git Repository
16+
uses: actions/checkout@v4
17+
with:
18+
fetch-depth: 0
19+
20+
- name: Run container builds
21+
run: |
22+
cd beeai
23+
podman-compose -f compose.yaml build

0 commit comments

Comments
 (0)