Skip to content

Merge pull request #1 from iorust/dependabot/cargo/tokio-approx-1.29 #25

Merge pull request #1 from iorust/dependabot/cargo/tokio-approx-1.29

Merge pull request #1 from iorust/dependabot/cargo/tokio-approx-1.29 #25

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
toolchain: [stable, nightly]
continue-on-error: true
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: false
components: rustfmt, clippy
- name: Run clippy
run: cargo clippy --all-targets --all-features
- name: Run tests
run: cargo test -- --nocapture --test-threads=1