Skip to content

Commit a4da3b3

Browse files
seel.xuSilvesterHsu
authored andcommitted
[Feature]: add github action CI/CD
1 parent e544ec5 commit a4da3b3

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflow/build.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Build
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
- develop
8+
workflow_dispatch:
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
container:
14+
image: silvesterhsu/astroparse:build
15+
steps:
16+
- name: Checkout
17+
uses: actions/checkout@v3
18+
- name: Set execute permission
19+
run: chmod +x ./scripts/build.sh
20+
- name: Build
21+
run: ./scripts/build.sh

0 commit comments

Comments
 (0)