Skip to content

Merge pull request #17 from bgpkit/feature/as2rel #23

Merge pull request #17 from bgpkit/feature/as2rel

Merge pull request #17 from bgpkit/feature/as2rel #23

Workflow file for this run

name: Rust
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run cargo-readme check
run: cargo install cargo-readme && cargo readme > TMP_README.md && diff -b TMP_README.md README.md
- name: Build default
run: cargo build
- name: Build lib with native-tls
run: cargo build --features native-tls && cargo tree --no-default-features --features native-tls | grep -q rustls && {exit 1} || echo "success"
- name: Build lib with rustls
run: cargo build --features rustls && cargo tree --no-default-features --features rustls | grep -q native-tls && {exit 1} || echo "success"
- name: Run format check
run: cargo fmt --check
- name: Run clippy
run: cargo clippy --all-features -- -D warnings