feat(ads-client): add contract tests to validate types against MARS #4
Workflow file for this run
This file contains hidden or 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: Ads Client Tests | |
| on: | |
| push: | |
| branches: [ main ] | |
| paths: | |
| - 'components/ads-client/**' | |
| pull_request: | |
| branches: [ main ] | |
| paths: | |
| - 'components/ads-client/**' | |
| workflow_dispatch: | |
| jobs: | |
| integration-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: 'recursive' | |
| - name: Install Rust | |
| run: | | |
| curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y | |
| source $HOME/.cargo/env | |
| rustup toolchain install | |
| - name: Run ads-client integration tests against MARS staging | |
| run: cargo test -p ads-client --test integration_test -- --ignored |