Skip to content

Commit 9d6893a

Browse files
committed
ci: run tests on all solc versions if PR has ci-all-solc label
1 parent 0251991 commit 9d6893a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,8 @@ jobs:
220220
- ubuntu-latest
221221
- windows-latest
222222
solc: ${{
223-
(github.event_name == 'push' && github.ref == 'refs/heads/master') &&
223+
((github.event_name == 'push' && github.ref == 'refs/heads/master') ||
224+
(github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'ci-all-solc'))) &&
224225
fromJSON('["0.4.25", "0.5.7", "0.6.12", "0.7.5", "0.8.10", "0.8.25"]') ||
225226
fromJSON('["0.8.10", "0.8.25"]')
226227
}}

0 commit comments

Comments
 (0)