Skip to content

Implement Arrow Protocol v2 #26

Implement Arrow Protocol v2

Implement Arrow Protocol v2 #26

Workflow file for this run

on: [pull_request]
name: tests
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- run: sudo apt install libpcap-dev
- uses: actions-rs/cargo@v1.0.1
with:
command: build
args: --all-features --release
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- run: sudo apt install libpcap-dev
- uses: actions-rs/cargo@v1.0.1
with:
command: test
args: --all-features
audit:
name: Audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- uses: actions-rs/cargo@v1.0.1
with:
command: install
args: cargo-audit
- uses: actions-rs/cargo@v1.0.1
with:
command: audit
fmt:
name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- run: rustup component add rustfmt
- uses: actions-rs/cargo@v1.0.1
with:
command: fmt
args: --all -- --check
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- run: sudo apt install libpcap-dev
- run: rustup component add clippy
- uses: actions-rs/cargo@v1.0.1
with:
command: clippy
args: --all-features -- -D warnings