Skip to content

Commit 83c71ba

Browse files
authored
Add reusable isolated package build for sas.
1 parent f6cc32c commit 83c71ba

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: sas isolated package build
2+
3+
on: [workflow_call]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v2
11+
12+
- name: apt update
13+
run: sudo apt-get update && sudo apt-get upgrade -y
14+
15+
- name: build
16+
run: |
17+
cd docker
18+
docker compose build
19+
20+
- name: test
21+
run: |
22+
cd docker
23+
docker compose up

0 commit comments

Comments
 (0)