6b4e56b214
* Enabling github action tests * Fix failing tests * AccessList to Option in json * failing rust example removed * AccessList for jsonrpc * Tx type as sequence, AccessList as type
41 lines
1.3 KiB
YAML
41 lines
1.3 KiB
YAML
name: Build and Test Suite
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- main
|
|
- dev
|
|
jobs:
|
|
build-tests:
|
|
name: Test and Build
|
|
strategy:
|
|
matrix:
|
|
platform:
|
|
- ubuntu-16.04
|
|
- macos-latest
|
|
toolchain:
|
|
- stable
|
|
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
|