We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90fe5d5 commit 358e921Copy full SHA for 358e921
.github/workflows/ci.yml
@@ -17,10 +17,15 @@ jobs:
17
uses: dtolnay/rust-toolchain@stable
18
with:
19
components: rustfmt, clippy
20
+ - name: Install solc
21
+ run: |
22
+ SOLC_VERSION=0.8.26
23
+ curl -L https://github.com/ethereum/solidity/releases/download/v${SOLC_VERSION}/solc-static-linux \
24
+ -o solc
25
+ chmod +x solc
26
+ sudo mv solc /usr/local/bin/solc
27
- name: Run formatting check
28
run: cargo fmt --check
- - name: Install solc
- run: sudo apt-get update && sudo apt-get install -y solc
29
- name: Run clippy
30
run: cargo clippy --workspace --all-targets --all-features -- -D warnings
31
- name: Run tests
0 commit comments