We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e544ec5 commit a4da3b3Copy full SHA for a4da3b3
.github/workflow/build.yaml
@@ -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