Update Dockerfile.demo to use cargo-binstall for trunk installation #370
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: Rust | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/cache@v2 | |
with: | |
path: | | |
~/.rustup/toolchains/stable-* | |
~/.cargo/registry | |
~/.cargo/git | |
target | |
key: ${{ runner.os }}-stable-cargo-${{ hashFiles('**/Cargo.lock') }} | |
- name: Install cargo-nextest | |
uses: taiki-e/install-action@nextest | |
- name: Build | |
run: cargo build --all-features | |
- name: Run tests | |
run: cargo nextest run --all-features | |
test_freebsd: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Test in FreeBSD | |
id: test | |
uses: vmactions/freebsd-vm@v1 | |
with: | |
envs: 'CARGO_TERM_COLOR' | |
usesh: true | |
prepare: | | |
pkg install -y curl gcc | |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y | |
run: | | |
. "$HOME/.cargo/env" | |
cargo build --all-features | |
cargo test --all-features | |
cargo clean |