-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added ci * add wasm32-unknown-unknown target
- Loading branch information
Showing
1 changed file
with
64 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
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: | ||
- uses: davidB/rust-cargo-make@v1 | ||
- uses: actions/checkout@v2 | ||
- name: Install wasm32-unknown-unknown target | ||
run: rustup target add wasm32-unknown-unknown | ||
- name: feature_check | ||
run: (cd fe2o3-amqp && cargo make feature_check) | ||
- 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) | ||
|