Skip to content

Bump serde_json from 1.0.132 to 1.0.133 #97

Bump serde_json from 1.0.132 to 1.0.133

Bump serde_json from 1.0.132 to 1.0.133 #97

Workflow file for this run

---
name: test
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
CARGO_TERM_COLOR: always
jobs:
test_ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
test_windows:
runs-on: windows-latest
steps:
- name: Enable symlinks
run: git config --global core.symlinks true
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose