Skip to content

Commit df8079d

Browse files
committed
Merge branch 'main' into update
2 parents cfea17d + 8bc1c09 commit df8079d

File tree

77 files changed

+493178
-121
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+493178
-121
lines changed

.github/workflows/Test.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,13 @@ jobs:
2323
- stable
2424
steps:
2525
- uses: actions/checkout@v4
26+
- run: npm i -g --force corepack && corepack enable
27+
- uses: actions/setup-node@v4
28+
with:
29+
node-version: 22
30+
cache: 'pnpm'
31+
cache-dependency-path: 'jmaxml-json-types/pnpm-lock.yaml'
32+
2633
- name: Rustup
2734
run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
2835
- name: Install cargo-llvm-cov
@@ -31,13 +38,12 @@ jobs:
3138
run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info
3239

3340
- name: Test jmaxml-json-types
34-
run: npm install && npm run test
41+
run: pnpm install && npm run test
3542
working-directory: ./jmaxml-json-types
3643

3744
- name: Upload coverage to Codecov
3845
uses: codecov/codecov-action@v4
3946
with:
40-
working-directory: ./jmaxml-rs
4147
token: ${{ secrets.CODECOV_TOKEN }}
4248
files: lcov.info
43-
fail_ci_if_error: true
49+
fail_ci_if_error: true

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
.DS_Store
22

3+
/target/
4+
35
.pyc
46
__pycache__
57
.pytest_cache

0 commit comments

Comments
 (0)