Merge pull request #54 from SurfingNerd/i31_minimum_gas_price #55
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 Suite | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
- dev | |
jobs: | |
build-tests: | |
name: Test and Build | |
strategy: | |
matrix: | |
platform: | |
- ubuntu-latest | |
# - macos-latest | |
toolchain: | |
- 1.59 | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@main | |
with: | |
submodules: true | |
- name: Install toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ matrix.toolchain }} | |
profile: minimal | |
override: true | |
- name: Build tests | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --locked --all --release --features "json-tests" --verbose --no-run | |
- name: Run tests for ${{ matrix.platform }} | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --locked --all --release --features "json-tests" --verbose |