This repository has been archived by the owner on Nov 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 212
88 lines (72 loc) · 1.95 KB
/
test.yaml
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
name: Test
on:
push:
branches:
- master
- develop
pull_request:
branches:
- master
- develop
env:
ETHERSCAN_TOKEN: 6776WKCX4XHV7C6NQBTIME6XKM2YNBK29V
WEB3_INFURA_PROJECT_ID: 164b1027c8254bf69a309a9ae0b81342
jobs:
brownie:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
type: [functional]
steps:
- name: Check out github repository
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Check ETHERSCAN_TOKEN
run: |
if [ -z "$ETHERSCAN_TOKEN" ] ; then
echo "Missing ENV variable ETHERSCAN_TOKEN"
exit 1
fi
- name: Check WEB3_INFURA_PROJECT_ID
run: |
if [ -z "$WEB3_INFURA_PROJECT_ID" ] ; then
echo "Missing ENV variable WEB3_INFURA_PROJECT_ID"
exit 1
fi
- name: Cache compiler installations
uses: actions/cache@v2
with:
path: |
~/.solcx
~/.vvm
key: ${{ runner.os }}-compiler-cache
- name: Setup node.js
uses: actions/setup-node@v1
with:
node-version: '12.x'
- name: Install ganache
run: npm install -g [email protected]
- name: Set up python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Set pip cache directory path
id: pip-cache-dir-path
run: |
echo "::set-output name=dir::$(pip cache dir)"
- name: Restore pip cache
uses: actions/cache@v2
id: pip-cache
with:
path: |
${{ steps.pip-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements-dev.txt') }}
restore-keys: |
${{ runner.os }}-pip-${{ hashFiles('**/requirements-dev.txt') }}
${{ runner.os }}-pip-
- name: Install python dependencies
run: pip install -r requirements-dev.txt
- name: Run tests
run: brownie test tests/${{ matrix.type }}/ -s --coverage