Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Build
run: cargo build
run: cargo build --locked --workspace
- name: Test
run: cargo test
run: cargo test --locked
- name: Test json_tree_test for simd_json feature
run: cargo test --features=simd_json --no-default-features --test json_tree_test
run: cargo test --locked --features=simd_json --no-default-features --test json_tree_test
- name: Clippy
run: cargo clippy
- name: Format
Expand All @@ -34,12 +34,12 @@ jobs:
with:
version: "v0.20.3"
- name: Trunk build
working-directory: examples/demo
run: trunk build --release --public-url /egui_json_tree
working-directory: demo
run: trunk build --locked --release --public-url /egui_json_tree
- name: Maybe deploy web demo
if: github.ref == 'refs/heads/main'
uses: crazy-max/ghaction-github-pages@v2
with:
build_dir: examples/demo/dist
build_dir: demo/dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
**/target
Cargo.lock
.vscode
dist
.DS_Store
Loading