Skip to content

Commit

Permalink
fix(tests): force install solidity 0.8.19 through svm (#5221)
Browse files Browse the repository at this point in the history
* fix(tests): force install 0.8.19 through svm

* chore: use installed version

* chore: also install 0.8.20
  • Loading branch information
Evalir committed Jun 26, 2023
1 parent 7787e09 commit 3b1129b
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,19 @@ jobs:
with:
name: ${{ matrix.archive.name }}
path: ${{ matrix.archive.file }}
install-svm-solc:
name: install svm and solidity / ${{ matrix.job.name }}
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Install svm
run: cargo install svm-rs
- name: Install Solidity 0.8.19
run: svm install 0.8.19
- name: Install Solidity 0.8.20
run: svm install 0.8.20
- name: Use Solidity 0.8.19
run: svm use 0.8.19

unit:
name: unit tests / ${{ matrix.job.name }}
Expand Down

0 comments on commit 3b1129b

Please sign in to comment.