Skip to content

Commit 82da99f

Browse files
committed
Fix up toml and remove llvm-cov because this is OSS and I don't know how to set up the codecov token
1 parent 5c78000 commit 82da99f

File tree

4 files changed

+5
-12
lines changed

4 files changed

+5
-12
lines changed

compiler/.github/workflows/cargo-test.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ jobs:
3131
toolchain: stable
3232
override: true
3333

34-
- uses: taiki-e/install-action@cargo-llvm-cov
3534
- uses: taiki-e/install-action@nextest
3635

3736
- name: Rust Cache
@@ -40,15 +39,6 @@ jobs:
4039
- name: cargo test
4140
shell: bash
4241
run: |
43-
cargo llvm-cov nextest --all-features --lcov --output-path lcov.info
42+
cargo nextest run --all-features
4443
env:
4544
RUST_BACKTRACE: 1
46-
47-
- name: Upload to codecov.io
48-
uses: codecov/codecov-action@v3
49-
with:
50-
token: ${{secrets.CODECOV_TOKEN}}
51-
fail_ci_if_error: true
52-
flags: unittests
53-
verbose: true
54-
files: lcov.info

compiler/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ authors = ["Adam Chalmers <[email protected]>"]
1010
description = "Tooling for KCL (KittyCAD Language)"
1111
documentation = "docs.rs/kittycad-lang"
1212
readme = "README.md"
13-
publish = false
13+
publish = false
14+
repository = "https://github.com/KittyCAD/kcl"

compiler/cli/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ authors.workspace = true
66
description.workspace = true
77
documentation.workspace = true
88
publish.workspace = true
9+
repository.workspace = true
910

1011
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1112

compiler/compiler/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ authors.workspace = true
66
description.workspace = true
77
documentation.workspace = true
88
publish.workspace = true
9+
repository.workspace = true
910

1011
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1112

0 commit comments

Comments
 (0)