Skip to content

Commit 4258cd5

Browse files
committed
feat: add github action to test build_container and run containerized test
1 parent fec2c78 commit 4258cd5

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: build_container
2+
3+
on:
4+
push:
5+
ignore_branches: [ no_test ]
6+
pull_request:
7+
ignore_branches: [ no_test ]
8+
9+
jobs:
10+
11+
build_container:
12+
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v4
16+
17+
- name: Run build_container to generate scratch image
18+
run: scripts/build_container -g scratch -e BASE_IMAGE=scratch
19+
20+
- name: Run test script
21+
run: scripts/test

0 commit comments

Comments
 (0)