Bump jetli/trunk-action from 0.4.0 to 0.5.0 #7
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: Base16 CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
tests: | |
name: Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Rust | |
uses: hecrj/setup-rust-action@v2 | |
with: | |
rust-version: stable | |
- uses: actions/checkout@v4 | |
- name: Fetch Trunk | |
uses: jetli/trunk-action@v0.5.0 | |
with: | |
version: 'latest' | |
- run: cargo build --verbose --all-features | |
- run: cargo test --verbose --all-features | |
- run: cargo doc --verbose | |
- run: cargo doc --verbose --all-features |