Regression Test #441
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: ci | |
run-name: "Regression Test" | |
on: | |
schedule: | |
- cron: '30 1 * * *' | |
push: | |
branches: ["main"] | |
paths-ignore: | |
- '**/README.md' | |
- '**/*.png' | |
- 'rabbitmq_spec/**' | |
- 'prepare_release.sh' | |
- 'regression_test.sh' | |
workflow_dispatch: | |
pull_request: | |
branches: ["main"] | |
paths-ignore: | |
- '**/README.md' | |
- '**/*.png' | |
- 'rabbitmq_spec/**' | |
- 'prepare_release.sh' | |
- 'regression_test.sh' | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
builds: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check rust version | |
run: rustc -V; cargo -V; rustup -V | |
- name: cargo build (debug, all-features) | |
run: cargo build --all-features --verbose | |
- name: cargo clippy (all-features) | |
run: cargo clippy --all-features -- -Dwarnings | |
check_msrv: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust: | |
- stable | |
- '1.64' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: ${{ matrix.rust }} | |
override: true | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: check | |
args: --all-features | |
test_examples: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Start RabbitMQ server | |
run: ./start_rabbitmq.sh | |
- name: examples | |
run: ./examples/run_examples.sh | |
test_features_combination: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
feat: | |
- -F default | |
- -F traces | |
- -F compliance_assert | |
- -F tls | |
- -F urispec | |
- --all-features --release | |
steps: | |
- name: Check rust version | |
run: rustc -V; cargo -V; rustup -V | |
- uses: actions/checkout@v4 | |
- name: Start RabbitMQ server | |
run: ./start_rabbitmq.sh | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: ${{ matrix.feat }} |