Skip to content

chore!: Migrate from slog to tracing (#40) #58

chore!: Migrate from slog to tracing (#40)

chore!: Migrate from slog to tracing (#40) #58

Workflow file for this run

---
name: Build
on:
push:
branches:
- main
tags:
- "*"
pull_request:
merge_group:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
rust: [stable, beta, nightly]
zookeeper: [3.9.2, 3.8.4, 3.7.2, 3.6.4, 3.5.10]
steps:
- name: Check out repository code
uses: actions/checkout@v3
- run: rustup default ${{ matrix.rust }}
- run: wget -O zookeeper.tar.gz https://archive.apache.org/dist/zookeeper/zookeeper-${{ matrix.zookeeper }}/apache-zookeeper-${{ matrix.zookeeper }}-bin.tar.gz
- run: mkdir zookeeper
- run: tar -zxvf zookeeper.tar.gz -C zookeeper --strip-components 1
- run: ./scripts/ci-start-zookeeper
- run: cargo test