update cf rpki processing #34
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: 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 tests | |
run: cargo test | |
- name: Run clippy | |
run: cargo clippy --all-features -- -D warnings |