Update Rust crate serde_json to v1.0.132 #893
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: test | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
- name: Test project | |
run: cargo test -v | |
- name: Install Tarpaulin | |
uses: baptiste0928/cargo-install@v3 | |
if: github.ref == 'refs/heads/main' | |
with: | |
crate: cargo-tarpaulin | |
- name: Generate coverage report | |
if: github.ref == 'refs/heads/main' | |
run: cargo tarpaulin --coveralls ${{ secrets.COVERALLS_TOKEN }} |