build(deps): bump serde from 1.0.215 to 1.0.216 (#38) #107
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: Build and test | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
permissions: | |
checks: write | |
pull-requests: write | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: rustup toolchain install stable --profile minimal | |
- uses: taiki-e/install-action@nextest | |
- name: Rust Cache | |
uses: Swatinem/[email protected] | |
- name: Build | |
run: cargo build --verbose | |
- name: Run doctests | |
run: cargo test --doc | |
- name: Run tests | |
run: cargo nextest run --profile ci | |
- name: Publish Test Results | |
uses: EnricoMi/publish-unit-test-result-action@v2 | |
if: always() | |
with: | |
files: | | |
target/nextest/ci/junit.xml |