Skip to content

Apache Avro 0.17

Apache Avro 0.17 #78

Workflow file for this run

name: Build & Test
on:
push:
branches:
- master
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build-and-test:
name: Build and test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
toolchain: [stable]
steps:
- uses: actions/checkout@v3
- run: |
rustup update ${{ matrix.toolchain }}
rustup default ${{ matrix.toolchain }}
- run: cargo build --features full
- run: cargo fmt --check --all
- run: cargo clippy --features full -- -D warnings
- run: cargo test --features full --verbose