Skip to content

dx_proj_onto_plane_at_0 #143

dx_proj_onto_plane_at_0

dx_proj_onto_plane_at_0 #143

Workflow file for this run

name: stable
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
stable:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
submodules: "recursive"
- name: Run sccache-cache
uses: mozilla-actions/[email protected]
- name: Run sccache stat for check before
shell: bash
run: ${SCCACHE_PATH} --show-stats
- uses: extractions/setup-just@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: cargo build
env:
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
run: |
cargo build --release --all-targets
just build-std
- name: cargo test
env:
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
run: |
cargo test --release
- name: cargo clippy
env:
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
run: |
rustup component add clippy
cargo clippy --all-targets
- name: Run sccache stat for check after
shell: bash
run: ${SCCACHE_PATH} --show-stats