File tree Expand file tree Collapse file tree 15 files changed +83
-85
lines changed Expand file tree Collapse file tree 15 files changed +83
-85
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 3
3
branches :
4
4
- main
5
5
paths :
6
- - ' **.rs'
7
- - .github/workflows/cargo-clippy.yml
8
- - Cargo.lock
9
- - Cargo.toml
10
- - rust-toolchain
11
- - rust-toolchain.toml
6
+ - ' compiler/**.rs'
7
+ - compiler/.github/workflows/cargo-clippy.yml
8
+ - compiler/Cargo.lock
9
+ - compiler/Cargo.toml
10
+ - compiler/rust-toolchain.toml
12
11
pull_request :
13
12
paths :
14
- - ' **.rs'
15
- - .github/workflows/cargo-clippy.yml
16
- - Cargo.lock
17
- - Cargo.toml
18
- - rust-toolchain
19
- - rust-toolchain.toml
13
+ - ' compiler/**.rs'
14
+ - compiler/.github/workflows/cargo-clippy.yml
15
+ - compiler/Cargo.lock
16
+ - compiler/Cargo.toml
17
+ - compiler/rust-toolchain.toml
20
18
name : cargo clippy
21
19
jobs :
22
- cargoclippy :
20
+ compiler- cargoclippy :
23
21
name : cargo clippy --tests --benches --examples
24
22
runs-on : ubuntu-latest
25
23
steps :
Original file line number Diff line number Diff line change
1
+ on :
2
+ push :
3
+ branches :
4
+ - main
5
+ paths :
6
+ - ' compiler/**.rs'
7
+ - compiler/.github/workflows/cargo-deny.yml
8
+ - compiler/Cargo.lock
9
+ - compiler/Cargo.toml
10
+ - compiler/rust-toolchain.toml
11
+ pull_request :
12
+ paths :
13
+ - ' compiler/**.rs'
14
+ - compiler/.github/workflows/cargo-deny.yml
15
+ - compiler/Cargo.lock
16
+ - compiler/Cargo.toml
17
+ - compiler/rust-toolchain.toml
18
+ workflow_dispatch :
19
+ permissions : read-all
20
+ name : cargo deny
21
+ jobs :
22
+ compiler-cargodeny :
23
+ name : cargo deny
24
+ runs-on : ubuntu-latest
25
+ steps :
26
+ - uses : actions/checkout@v3
27
+
28
+ - uses : EmbarkStudios/cargo-deny-action@v1
29
+ with :
30
+ log-level : warn
31
+ command : check bans licenses sources
32
+ arguments : --all-features
Original file line number Diff line number Diff line change 3
3
branches :
4
4
- main
5
5
paths :
6
- - ' **.rs'
7
- - .github/workflows/cargo-test.yml
8
- - Cargo.lock
9
- - Cargo.toml
10
- - rust-toolchain.toml
6
+ - ' compiler/ **.rs'
7
+ - compiler/ .github/workflows/cargo-test.yml
8
+ - compiler/ Cargo.lock
9
+ - compiler/ Cargo.toml
10
+ - compiler/ rust-toolchain.toml
11
11
pull_request :
12
12
paths :
13
- - ' **.rs'
14
- - .github/workflows/cargo-test.yml
15
- - Cargo.lock
16
- - Cargo.toml
17
- - rust-toolchain.toml
13
+ - ' compiler/ **.rs'
14
+ - compiler/ .github/workflows/cargo-test.yml
15
+ - compiler/ Cargo.lock
16
+ - compiler/ Cargo.toml
17
+ - compiler/ rust-toolchain.toml
18
18
workflow_dispatch :
19
19
permissions : read-all
20
20
name : cargo test
21
21
jobs :
22
- cargotest :
22
+ compiler- cargotest :
23
23
name : cargo test
24
24
runs-on : ubuntu-latest
25
25
steps :
File renamed without changes.
Original file line number Diff line number Diff line change
1
+ [workspace ]
2
+
3
+ members = [
4
+ " cli" ,
5
+ " compiler" ,
6
+ ]
7
+
8
+ [workspace .package ]
9
+ authors = [
" Adam Chalmers <[email protected] >" ]
10
+ description = " Tooling for KCL (KittyCAD Language)"
11
+ documentation = " docs.rs/kittycad-lang"
12
+ readme = " README.md"
13
+ publish = false
14
+ repository = " https://github.com/KittyCAD/kcl"
15
+ license = " MIT"
File renamed without changes.
File renamed without changes.
File renamed without changes.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments