We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
tests
1 parent 7787e09 commit 3b1129bCopy full SHA for 3b1129b
.github/workflows/test.yml
@@ -47,6 +47,19 @@ jobs:
47
with:
48
name: ${{ matrix.archive.name }}
49
path: ${{ matrix.archive.file }}
50
+ install-svm-solc:
51
+ name: install svm and solidity / ${{ matrix.job.name }}
52
+ runs-on: ubuntu-latest
53
+ timeout-minutes: 30
54
+ steps:
55
+ - name: Install svm
56
+ run: cargo install svm-rs
57
+ - name: Install Solidity 0.8.19
58
+ run: svm install 0.8.19
59
+ - name: Install Solidity 0.8.20
60
+ run: svm install 0.8.20
61
+ - name: Use Solidity 0.8.19
62
+ run: svm use 0.8.19
63
64
unit:
65
name: unit tests / ${{ matrix.job.name }}
0 commit comments