Skip to content

Bump serde_json from 1.0.108 to 1.0.109 #173

Bump serde_json from 1.0.108 to 1.0.109

Bump serde_json from 1.0.108 to 1.0.109 #173

Workflow file for this run

name: CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Ensure 'cargo fmt'
run: cargo fmt -- --check
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Run example - simple_speedtest
run: cargo run --example simple_speedtest
- name: Run example - download_test
run: cargo run --example download_test
- name: Run example - latency_test
run: cargo run --example latency_test
- name: Run CLI
run: cargo run