Skip to content

Commit

Permalink
Merge pull request #3 from EspressoSystems/feat/publish-crate
Browse files Browse the repository at this point in the history
Add workflow to publish crate
  • Loading branch information
jbearer authored Mar 14, 2024
2 parents 740a73c + 6311db7 commit 0c8f7d7
Show file tree
Hide file tree
Showing 4 changed files with 107 additions and 125 deletions.
107 changes: 107 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,43 @@ on:
branches:
- main
- release-*
tags:
- v*.*.*
pull_request:
branches:
- main
- release-*
workflow_dispatch:

jobs:
lint:
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: dtolnay/rust-toolchain@stable

- uses: Swatinem/rust-cache@v2
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

build:
runs-on: ubuntu-latest
env:
Expand Down Expand Up @@ -46,3 +76,80 @@ jobs:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./target/doc
cname: tide-disco.docs.espressosys.com

test:
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: dtolnay/rust-toolchain@stable

- uses: Swatinem/rust-cache@v2
name: Enable Rust Caching

- name: Build tests
run: cargo test --workspace --release --all-features --no-run

- name: Test
run: cargo test --workspace --release --all-features --verbose -- --test-threads 2
timeout-minutes: 60

docs:
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: dtolnay/rust-toolchain@stable

- uses: Swatinem/rust-cache@v2
name: Enable Rust Caching

- name: Generate Documentation
run: |
cargo doc --no-deps --lib --release --all-features
echo '<meta http-equiv="refresh" content="0; url=base64_bytes">' > 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: base64-bytes.docs.espressosys.com

publish:
needs:
- build
- test
- lint
- docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- uses: katyo/publish-crates@v2
with:
# Only do an actual publish if this is a push to a release tag. Otherwise, do a dry run.
dry-run: ${{ !(github.event_name == 'push' && github.ref_type == 'tag') }}
ignore-unpublished-changes: true
45 changes: 0 additions & 45 deletions .github/workflows/docs.yml

This file was deleted.

41 changes: 0 additions & 41 deletions .github/workflows/lint.yml

This file was deleted.

39 changes: 0 additions & 39 deletions .github/workflows/test.yml

This file was deleted.

0 comments on commit 0c8f7d7

Please sign in to comment.