Skip to content

Bump tracing from 0.1.39 to 0.1.40 #64

Bump tracing from 0.1.39 to 0.1.40

Bump tracing from 0.1.39 to 0.1.40 #64

Workflow file for this run

on:
push:
branches: [main]
pull_request:
# Stop CI if a commit is pushed.
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
name: test
jobs:
required:
runs-on: ubuntu-latest
name: ubuntu / ${{ matrix.toolchain }}
strategy:
matrix:
toolchain: [stable, beta]
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Install ${{ matrix.toolchain }}
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
- name: cargo test --locked
run: cargo test --locked --all-features --all-targets
- name: cargo test --doc
run: cargo test --locked --all-features --doc