Skip to content

Update Rust crate serde_json to v1.0.124 #346

Update Rust crate serde_json to v1.0.124

Update Rust crate serde_json to v1.0.124 #346

Workflow file for this run

name: CI
on:
push:
branches:
- 'main'
- 'patch/**'
- 'minor/**'
- 'major/**'
- 'feature/**'
- 'fix/**'
- 'hotfix/**'
- 'renovate/**'
pull_request:
branches:
- 'main'
- 'patch/**'
- 'minor/**'
- 'major/**'
- 'feature/**'
- 'fix/**'
- 'hotfix/**'
- 'renovate/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
- name: Build
run: cargo build --release --verbose
- name: rust-clippy-check
uses: actions-rs/clippy-check@v1.0.7
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-targets --all-features -- -D warnings
- name: Run tests
run: cargo test --verbose
# - name: Run cargo-tarpaulin
# uses: actions-rs/tarpaulin@v0.1
# with:
# args: '-- --test-threads 1'
# - name: Upload to codecov.io
# uses: codecov/codecov-action@v1.0.2
# with:
# token: ${{secrets.CODECOV_TOKEN}}
# - name: Archive code coverage results
# uses: actions/upload-artifact@v1
# with:
# name: code-coverage-report
# path: cobertura.xml