Skip to content

Commit 39d9445

Browse files
authored
Merge pull request #56 from codefuse-ai/lhk_dev
[fix] godelscript build workflow trigger when source directory is changed
2 parents 556aaa6 + 05712f3 commit 39d9445

File tree

6 files changed

+9
-6
lines changed

6 files changed

+9
-6
lines changed

.github/workflows/godel_build.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,12 @@ name: GodelScript Build
22

33
on:
44
push:
5-
branches: [ main, lhk_dev ]
5+
paths:
6+
- godel-script/**
67
pull_request:
78
branches: [ main ]
9+
paths:
10+
- godel-script/**
811

912
jobs:
1013
mac-aarch64-build:

godel-script/.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# build directory
22
build
3-
cmake-build
3+
cmake-build

godel-script/docs/language-reference/databases.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ impl Student {
4747
}
4848
```
4949

50-
Back to [README.md](../../README.md#documents)
50+
Back to [README.md](../../README.md#documents)

godel-script/docs/language-reference/program.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,4 +108,4 @@ fn main() {
108108
}
109109
```
110110

111-
Back to [README.md](../../README.md#documents)
111+
Back to [README.md](../../README.md#documents)

godel-script/docs/language-reference/schemas.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -205,4 +205,4 @@ Judge if this schema instance in universal set of another schema, duck type chec
205205
stmt.is<ElementParent>()
206206
```
207207

208-
Back to [README.md](../../README.md#documents)
208+
Back to [README.md](../../README.md#documents)

godel-script/docs/language-reference/type.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,4 +109,4 @@ fn max(self: *int) -> int;
109109
fn find(self: *T0, instance: T1) -> T0;
110110
```
111111

112-
Back to [README.md](../../README.md#documents)
112+
Back to [README.md](../../README.md#documents)

0 commit comments

Comments
 (0)