Skip to content

chore(cargo): update: bump serde_json from 1.0.127 to 1.0.128 #140

chore(cargo): update: bump serde_json from 1.0.127 to 1.0.128

chore(cargo): update: bump serde_json from 1.0.127 to 1.0.128 #140

Workflow file for this run

name: testing
on:
push:
branches:
- 'main'
paths:
- 'src/**/*'
- 'tests/**/*'
- '**/Cargo.toml'
- '**/Cargo.lock'
- 'docker-compose.yml'
- '.github/workflows/testing.yml'
pull_request:
branches:
- 'main'
paths:
- 'src/**/*'
- 'tests/**/*'
- '**/Cargo.toml'
- '**/Cargo.lock'
- 'docker-compose.yml'
- '.github/workflows/testing.yml'
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: test
runs-on: ubuntu-latest
# container:
# image: xd009642/tarpaulin
# options: --security-opt seccomp=unconfined
steps:
- name: checkout
uses: actions/checkout@v4
- name: install rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: install rust cache
uses: Swatinem/rust-cache@v2
- name: run tests
run: cargo test
# coverage:
# name: coverage
# runs-on: ubuntu-latest
# steps:
# - name: checkout
# uses: actions/checkout@v4
# - name: install rust toolchain
# uses: dtolnay/rust-toolchain@stable
# - name: install rust cache
# uses: Swatinem/rust-cache@v2
# - name: run coverage check
# uses: actions-rs/[email protected]
# with:
# version: '0.15.0'
# args: '--workspace --fail-under 5 --exclude-files src/cli/* --exclude-files tests/*'