update to solc@0.5.16

update waffle version and fix deprecations

move CI from circle to github actions
This commit is contained in:
Noah Zinsmeister
2020-01-22 11:47:24 -05:00
parent 0781322e0b
commit b972227df8
20 changed files with 732 additions and 241 deletions

33
.github/workflows/CI.yml vendored Normal file
View File

@ -0,0 +1,33 @@
name: CI
jobs:
test:
strategy:
matrix:
node: ['10.x', '12.x']
os: [ubuntu-latest, macOS-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: npm install -g yarn
- id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v1
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ matrix.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ matrix.os }}-yarn-
- run: yarn
- run: yarn lint
- run: yarn compile
- run: yarn test