Skip to content

Commit

Permalink
added ci
Browse files Browse the repository at this point in the history
  • Loading branch information
minghuaw committed Jun 13, 2024
1 parent 7a860db commit 0f7eaa4
Showing 1 changed file with 65 additions and 0 deletions.
65 changes: 65 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
name: CI

on:
push:
branches:
- main
pull_request: {}

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
rustfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check

clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: clippy
args: --all -- --deny warnings

# run tests in each crate with cargo-make
feature_check_and_test:
runs-on: ubuntu-latest
steps:
# install cargo-make
- uses: davidB/rust-cargo-make@v1
- uses: actions/checkout@v2
# feature check fe2o3-amqp
- name: feature_check
run: (cd fe2o3-amqp && cargo make feature_check)
# test all crates
- name: test serde_amqp
run: (cd serde_amqp && cargo make test)
- name: test fe2o3-amqp-types
run: (cd fe2o3-amqp-types && cargo make test)
- name: test fe2o3-amqp
run: (cd fe2o3-amqp && cargo make test)
- name: test fe2o3-amqp-cbs
run: (cd fe2o3-amqp-cbs && cargo make test)
- name: test fe2o3-amqp-ext
run: (cd fe2o3-amqp-ext && cargo make test)
- name: test fe2o3-amqp-management
run: (cd fe2o3-amqp-management && cargo make test)
- name: test fe2o3-amqp-ws
run: (cd fe2o3-amqp-ws && cargo make test)

0 comments on commit 0f7eaa4

Please sign in to comment.