Merge pull request #892 from crypto-com/fix/block-result-parser #4315
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: test | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: '1.18' | |
- name: Env | |
run: | | |
go version | |
cargo --version | |
rustc --version | |
- uses: actions/checkout@v2 | |
- name: Run test cases | |
run: make test | |
# build: | |
# name: Test Building Docker Image | |
# runs-on: ubuntu-latest | |
# needs: ["lint", "test"] | |
# steps: | |
# - name: Env | |
# run: | | |
# docker version | |
# - uses: actions/checkout@v2 | |
# - name: Build Docker Image | |
# run: | | |
# docker build . |