-
Notifications
You must be signed in to change notification settings - Fork 2
40 lines (39 loc) · 1.21 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: v3-contracts
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
solidity: [""]
settings: ['{"optimizer":{"enabled":true,"runs":200}}']
#include:
#- solidity: "0.8.14"
# settings: '{"optimizer":{"enabled":true,"runs":200}}'
#- solidity: "0.7.4"
# settings: '{"optimizer":{"enabled":true,"runs":200}}'
#- solidity: "0.6.6"
# settings: '{"optimizer":{"enabled":true,"runs":200}}'
#- solidity: "0.5.0"
# settings: '{"optimizer":{"enabled":true,"runs":200}}'
env:
SOLIDITY_VERSION: ${{ matrix.solidity }}
SOLIDITY_SETTINGS: ${{ matrix.settings }}
PROD: ""
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16.7.0
- uses: actions/cache@v3
with:
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- run: yarn --frozen-lockfile
- run: yarn build
- run: yarn test
- run: yarn coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}