pool: merge all outputs in a single Output<T>
struct
#1
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: CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
fmt: | |
name: Format | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install just | |
run: cargo install just | |
- name: Check | |
run: just check-fmt | |
check-crates: | |
name: Check crates | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install just | |
run: cargo install just | |
- name: Check | |
run: just check-crates | |
check-crates-msrv: | |
name: Check crates (MSRV) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install just | |
run: cargo install just | |
- name: Check | |
run: just check-crates-msrv | |
check-bindings: | |
name: Check bindings | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install just | |
run: cargo install just | |
- name: Check | |
run: just check-bindings | |
check-docs: | |
name: Check docs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install just | |
run: cargo install just | |
- name: Check | |
run: just check-docs | |
build-no-std: | |
name: Build no_std | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./crates/nostr/examples/embedded | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set default toolchain | |
run: rustup default nightly | |
- name: Set profile | |
run: rustup set profile minimal | |
- name: Install just | |
run: cargo install just | |
- name: Init | |
run: sudo apt update && just init | |
- name: Build | |
run: just build |