Add impl IntoNode for Var
(#132)
#184
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: Test native builds | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: ["ubuntu-latest", "macos-14", "windows-latest"] | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: Swatinem/rust-cache@v2 | |
- name: Build tests | |
run: cargo test --verbose --package fidget --no-run | |
- name: Run crate tests | |
run: cargo test --verbose --package fidget --lib | |
- name: Run doc tests | |
run: cargo test --verbose --package fidget --doc |