Skip to content

Commit

Permalink
Merge pull request #1855 from masongup-mdsol/test-serialize-features
Browse files Browse the repository at this point in the history
Tests for serialize features
  • Loading branch information
benesch committed Dec 23, 2020
2 parents 47fd11d + e1ef044 commit 2903586
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,25 @@ jobs:
- name: Generate crates
run: make generate

struct_serialize_feature_test:
name: Serialize Struct Feature
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Set up Rust
uses: hecrj/setup-rust-action@v1
- name: Cache
uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Run Checks
run: make serialize_structs_limited_test

skeptic:
name: Skeptic tests
runs-on: ubuntu-latest
Expand Down
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -84,3 +84,11 @@ bench_s3: ## run S3 benchmarks
.PHONY: credential_integration_test
credential_integration_test: ## Run credentials integration tests
(cd rusoto/credential_service_mock && ./run-and-test.sh )

.PHONY: serialize_structs_limited_test
serialize_structs_limited_test:
(cd rusoto/services && ./test-select-features.sh)

.PHONY: serialize_structs_full_test
serialize_structs_full_test:
(cd rusoto/services && ./test-features.sh)

0 comments on commit 2903586

Please sign in to comment.