0.10.2 #24
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
on: | |
pull_request: | |
branches: [ "master" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
verify: | |
name: Build & Test | |
runs-on: ubuntu-latest | |
steps: | |
# git checkout | |
- uses: actions/checkout@v3 | |
# install just | |
- uses: extractions/setup-just@v1 | |
# setup rust toolchain | |
# https://github.com/actions-rs/toolchain/issues/126#issuecomment-782989659 | |
- run: rustup show | |
# cache | |
- uses: actions/cache@v3 | |
with: | |
path: scripts/node/node_modules | |
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
~/.cargo/.crates.toml | |
~/.cargo/.crates2.json | |
target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
# verify | |
- run: just setup | |
- run: just build | |
- run: DEBUG=1 just test |