Skip to content
This repository has been archived by the owner on May 3, 2024. It is now read-only.

Fix storage.upload() #163

Fix storage.upload()

Fix storage.upload() #163

Workflow file for this run

name: Tests
env:
SDK_ALCHEMY_KEY: ${{ secrets.SDK_ALCHEMY_KEY }}
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
strategy:
max-parallel: 1
matrix:
python-version: ["3.8"]
steps:
- uses: actions/checkout@v2
- name: Install Python 3
uses: "actions/[email protected]"
with:
python-version: "${{ matrix.python-version }}"
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 16.x
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
- name: Install Dependencies
run: poetry install
if: steps.cache.outputs.cache-hit != 'true'
- name: Run Tests
run: poetry run yarn add hardhat && make test