18
18
fail-fast : false
19
19
matrix :
20
20
os : ["ubuntu-latest", "windows-2022"]
21
- type : ["brownie", "buidler", "dapp", "embark", "etherlime", "hardhat", "solc", "truffle", "waffle", "foundry"]
21
+ type : ["brownie", "buidler", "dapp", "embark", "etherlime", "hardhat", "solc", "truffle", "waffle", "foundry", "standard" ]
22
22
exclude :
23
23
# Currently broken, tries to pull git:// which is blocked by GH
24
24
- type : embark
@@ -39,17 +39,17 @@ jobs:
39
39
id : node
40
40
shell : bash
41
41
run : |
42
- if [ ${{ matrix.type }} = etherlime ]; then
43
- echo '::set-output name= version:: 10.17.0'
42
+ if [ " ${{ matrix.type }}" = " etherlime" ]; then
43
+ echo 'version= 10.17.0' >> "$GITHUB_OUTPUT"
44
44
else
45
- echo '::set-output name= version:: lts/*'
45
+ echo 'version= lts/*' >> "$GITHUB_OUTPUT"
46
46
fi
47
47
- name : Set up Node
48
- uses : actions/setup-node@v2
48
+ uses : actions/setup-node@v3
49
49
with :
50
50
node-version : ${{ steps.node.outputs.version }}
51
51
- name : Set up Python 3.8
52
- uses : actions/setup-python@v3
52
+ uses : actions/setup-python@v4
53
53
with :
54
54
python-version : 3.8
55
55
- name : Install dependencies
@@ -59,10 +59,10 @@ jobs:
59
59
pip install .
60
60
- name : Set up nix
61
61
if : matrix.type == 'dapp'
62
- uses : cachix/install-nix-action@v16
62
+ uses : cachix/install-nix-action@v18
63
63
- name : Set up cachix
64
64
if : matrix.type == 'dapp'
65
- uses : cachix/cachix-action@v10
65
+ uses : cachix/cachix-action@v12
66
66
with :
67
67
name : dapp
68
68
- name : Run Tests
0 commit comments