This repository has been archived by the owner on Feb 5, 2025. It is now read-only.
Merge pull request #739 from EspressoSystems/jb/fetch-retry #1691
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: Build | |
on: | |
push: | |
branches: | |
- main | |
- release-* | |
pull_request: | |
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@v4 | |
name: Checkout Repository | |
- uses: Swatinem/rust-cache@v2 | |
name: Enable Rust Caching | |
- name: Build | |
# Build in release without `testing` feature, this should work without `hotshot_example` config. | |
run: | | |
cargo build --workspace --release | |
- name: Format Check | |
run: cargo fmt -- --check | |
# Run Clippy on all targets. The lint workflow doesn't run Clippy on tests, because the tests | |
# don't compile with all combinations of features. | |
- name: Clippy | |
run: cargo clippy --workspace --all-features --all-targets -- -D warnings | |
# Install nextest | |
- name: Install Nextest | |
run: cargo install cargo-nextest | |
- name: Test | |
run: | | |
cargo nextest run --workspace --release --all-features | |
timeout-minutes: 60 | |
- name: Doc Test | |
run: cargo test --release --all-features --doc | |
- name: Generate Documentation | |
run: | | |
cargo doc --no-deps --lib --release --all-features | |
echo '<meta http-equiv="refresh" content="0; url=hotshot_query_service">' > target/doc/index.html | |
- name: Deploy Documentation | |
uses: peaceiris/actions-gh-pages@v4 | |
if: ${{ github.ref == 'refs/heads/main' }} | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./target/doc | |
cname: tide-disco.docs.espressosys.com |