Build and test #552
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 }} | |
services: | |
rabbitmq: | |
image: rabbitmq:latest | |
ports: | |
- 5672:5672 | |
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@v4 | |
- 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 |