Skip to content

Commit fb94e2a

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

File tree

63 files changed

+493047
-2
lines changed

Some content is hidden

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

63 files changed

+493047
-2
lines changed

.github/workflows/Test.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@ 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+
2632
- name: Rustup
2733
run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
2834
- name: Install cargo-llvm-cov
@@ -31,7 +37,7 @@ jobs:
3137
run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info
3238

3339
- name: Test jmaxml-json-types
34-
run: npm install && npm run test
40+
run: pnpm install && npm run test
3541
working-directory: ./jmaxml-json-types
3642

3743
- name: Upload coverage to Codecov
@@ -40,4 +46,4 @@ jobs:
4046
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)