Skip to content

Require Debug trait for implementations of Backend::Error attribute of Backend trait #139

Require Debug trait for implementations of Backend::Error attribute of Backend trait

Require Debug trait for implementations of Backend::Error attribute of Backend trait #139

Workflow file for this run

name: Rust
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build-actix:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build (Actix)
run: cd ipfs-api; cargo build --verbose --features with-actix --no-default-features
- name: Build examples (Actix)
run: cargo build --verbose --examples --no-default-features --features with-actix
- name: Build tests (Actix)
run: cd ipfs-api; cargo test --verbose --features with-actix --no-default-features --no-run
- name: Run tests (Actix)
run: cd ipfs-api; cargo test --verbose --features with-actix --no-default-features
build-default:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Build examples
run: cargo build --verbose --examples
- name: Build tests
run: cargo test --verbose --no-run
- name: Run tests
run: cargo test --verbose
build-hyper:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build (Hyper with tls)
run: cd ipfs-api; cargo build --verbose --features with-hyper-tls --no-default-features
- name: Build examples (Hyper with tls)
run: cargo build --verbose --examples --no-default-features --features with-hyper-tls
- name: Build tests (Hyper with tls)
run: cargo test --verbose --features with-hyper-tls --no-default-features --no-run
- name: Run tests (Hyper with tls)
run: cargo test --verbose --features with-hyper-tls --no-default-features
- name: Build (Hyper with rustls)
run: cd ipfs-api; cargo build --verbose --features with-hyper-rustls --no-default-features
- name: Build examples (Hyper with rustls)
run: cargo build --verbose --examples --no-default-features --features with-hyper-rustls
- name: Build (Hyper with Send trait)
run: cd ipfs-api-backend-hyper; cargo build --verbose --features with-send-sync
other:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Format (Default)
run: cargo fmt --all -- --check
- name: Clippy
shell: bash
run: cargo clippy --all-targets -- -D warnings