Bump typescript from 5.4.5 to 5.5.3 in /test/test_solidity_project #445
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a basic workflow to help you get started with Actions | |
name: Test | |
on: [push, pull_request] | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.7.x", "3.8.x", "3.9.x", "3.10.x", "3.11.x"] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Get yarn cache directory path | |
id: yarn-cache-dir-path | |
run: echo "::set-output name=dir::$(yarn cache dir)" | |
- uses: actions/cache@v2 | |
id: yarn-cache | |
with: | |
path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
- name: Install NODE JS | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install building tools | |
run: pip3 install -r scripts/requirements.txt | |
- name: Install testing staff | |
run: pip3 install -r test/requirements.txt | |
- name: Install geth | |
run: | | |
sudo add-apt-repository -y ppa:ethereum/ethereum | |
sudo apt install ethereum | |
- name: Check types | |
run: mypy src | |
- name: Lint python | |
env: | |
PYTHONPATH: ./ | |
run: pylint src | |
- name: Build pip package | |
env: | |
VERSION: "0.0.0" | |
PYTHONPATH: ./ | |
run: ./scripts/build_package.sh | |
- name: Compile test contract | |
run: | | |
cd test/test_solidity_project | |
yarn install | |
- name: Run tests | |
run: | | |
pytest --cov=src.predeployed_generator | |
bash <(curl -s https://codecov.io/bash) -t ${{ secrets.CODECOV_TOKEN }} || echo "Codecov did not collect coverage reports" |