File tree Expand file tree Collapse file tree 3 files changed +10
-8
lines changed Expand file tree Collapse file tree 3 files changed +10
-8
lines changed Original file line number Diff line number Diff line change
1
+ ---
1
2
version : 2
2
3
updates :
3
4
- package-ecosystem : " github-actions"
Original file line number Diff line number Diff line change @@ -39,13 +39,13 @@ 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
Original file line number Diff line number Diff line change
1
+ ---
1
2
name : Pytest
2
3
3
4
defaults :
14
15
branches : [main, dev]
15
16
schedule :
16
17
# run CI every day even if no PRs/merges occur
17
- - cron : ' 0 12 * * *'
18
+ - cron : ' 0 12 * * *'
18
19
19
20
jobs :
20
21
tests :
21
22
runs-on : ubuntu-latest
22
23
23
24
steps :
24
- - uses : actions/checkout@v1
25
+ - uses : actions/checkout@v3
25
26
- name : Set up Python 3.8
26
- uses : actions/setup-python@v1
27
+ uses : actions/setup-python@v4
27
28
with :
28
29
python-version : 3.8
29
30
35
36
pip install solc-select
36
37
- name : Run Tests
37
38
run : |
38
- pytest tests/test_metadata.py
39
+ pytest tests/test_metadata.py
You can’t perform that action at this time.
0 commit comments