connection_properties: add config to recover on channel failure #500
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: Build and test | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: "0 12 * * 1" | |
jobs: | |
build_and_test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
#os: [ubuntu-latest, windows-latest, macos-latest] | |
os: [ubuntu-latest] | |
rust: [nightly, beta, stable, 1.74.0] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Start RabbitMQ | |
uses: getong/[email protected] | |
with: | |
rabbitmq user: 'guest' | |
rabbitmq password: 'guest' | |
rabbitmq vhost: '/' | |
- name: Install latest ${{ matrix.rust }} | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ matrix.rust }} | |
profile: minimal | |
override: true | |
- name: Run cargo check | |
uses: actions-rs/cargo@v1 | |
with: | |
command: check | |
args: --all --bins --examples --tests --all-features | |
- name: Run cargo check (without dev-dependencies to catch missing feature flags) | |
if: startsWith(matrix.rust, 'nightly') | |
uses: actions-rs/cargo@v1 | |
with: | |
command: check | |
args: -Z features=dev_dep | |
- name: Run cargo test | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test |