Bump tracing-log from 0.1.4 to 0.2.0 #2026
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
push: | |
branches: [main, dev] | |
workflow_dispatch: | |
jobs: | |
cargo-checkmate: | |
uses: ./.github/workflows/cargo-checkmate.yaml | |
reject-trailing-whitespace: | |
name: Reject trailing whitespace | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Reject trailing whitespace | |
run: ./utils/trailing-whitespace.sh reject | |
run-doc-tests: | |
name: ensure doc tests are run, (and any other tests implied) | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Run doc tests | |
run: | | |
cd zingo-status/src && cargo test | |
test: | |
uses: ./.github/workflows/test.yaml | |
with: | |
nextest-flags: "-E 'not test(slow)'" |