Skip to content

Bump hotshot from 5085d88 to 4844372 #159

Bump hotshot from 5085d88 to 4844372

Bump hotshot from 5085d88 to 4844372 #159

Workflow file for this run

name: Build
on:
push:
branches:
- main
- release-*
pull_request:
branches:
- main
- release-*
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
env:
RUST_LOG: info
steps:
- uses: styfle/[email protected]
name: Cancel Outdated Builds
with:
all_but_latest: true
access_token: ${{ github.token }}
- uses: actions/checkout@v3
name: Checkout Repository
- name: Install Protoc
uses: arduino/setup-protoc@v1
- uses: dtolnay/rust-toolchain@stable
- name: Configure Git
run: |
git config --global url."https://ancient123:${{ secrets.ORG_GITHUB_PAT }}@github.com".insteadOf git://github.com
git config --global url."https://ancient123:${{ secrets.ORG_GITHUB_PAT }}@github.com".insteadOf ssh://[email protected]
- uses: Swatinem/rust-cache@v1
name: Enable Rust Caching
- name: Format Check
run: cargo fmt -- --check
- uses: actions-rs/clippy-check@v1
name: Clippy
with:
token: ${{ github.token }}
args: --workspace --all-features --all-targets -- -D warnings
- name: Audit
run: cargo audit --ignore RUSTSEC-2023-0018
- name: Build
run: |
cargo build --workspace --release
- name: Test
run: |
cargo test --workspace --release --all-features --no-run
cargo test --workspace --release --all-features --verbose -- --test-threads 2
timeout-minutes: 60
- name: Generate Documentation
run: |
cargo doc --no-deps --lib --release
echo '<meta http-equiv="refresh" content="0; url=hotshot_query_service">' > target/doc/index.html
- name: Deploy Documentation
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./target/doc
cname: tide-disco.docs.espressosys.com