Skip to content

Commit e21af1f

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

File tree

65 files changed

+493150
-104
lines changed

Some content is hidden

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

65 files changed

+493150
-104
lines changed

.github/workflows/Test.yml

Lines changed: 9 additions & 2 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,7 +38,7 @@ 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
@@ -40,4 +47,4 @@ jobs:
4047
working-directory: ./jmaxml-rs
4148
token: ${{ secrets.CODECOV_TOKEN }}
4249
files: lcov.info
43-
fail_ci_if_error: true
50+
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)