add test-solidity to github actions, create test script (#510)

This commit is contained in:
noot
2020-09-18 12:50:08 -04:00
committed by GitHub
parent 517de55720
commit 248bcc3008
4 changed files with 84 additions and 1 deletions
+17
View File
@@ -210,3 +210,20 @@ jobs:
run: |
make test-import
if: "env.GIT_DIFF != ''"
test-solidity:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v2
- uses: technote-space/get-diff-action@v3.1
id: git_diff
with:
SUFFIX_FILTER: |
.go
.mod
.sum
- name: test-solidity
run: |
make test-solidity
if: "env.GIT_DIFF != ''"