G-Uni Deployment Scripts #843
Workflow file for this run
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 | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
check: | |
strategy: | |
fail-fast: true | |
name: Foundry project | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- uses: actions/setup-node@v2 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Install Node dependencies | |
run: pnpm install | |
# From: https://www.uffizzi.com/blog/optimizing-rust-builds-for-faster-github-actions-pipelines | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
target: x86_64-unknown-linux-musl | |
- name: Cargo Cache | |
uses: Swatinem/rust-cache@v2 | |
with: | |
workspaces: crates/ecies-cli | |
- name: Configure sccache | |
run: | | |
echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV | |
echo "SCCACHE_GHA_ENABLED=true" >> $GITHUB_ENV | |
- name: Run sccache-cache | |
uses: mozilla-actions/[email protected] | |
- name: Build local ecies-cli for use with testing | |
run: cd crates/ecies-cli && cargo build && cd ../.. | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
- name: Run lint check | |
run: pnpm run lint:check | |
- name: Run Forge build | |
run: | | |
forge --version | |
forge build | |
id: build | |
- name: Run Forge tests | |
run: | | |
pnpm run test | |
id: test | |
- name: Contract Sizes | |
run: | | |
forge --version | |
pnpm run size | |
id: sizes |