Skip to content

fix: dynamic vector handling (#13) #39

fix: dynamic vector handling (#13)

fix: dynamic vector handling (#13) #39

Workflow file for this run

name: Lint
on:
push:
branches:
- main
- develop
pull_request:
jobs:

Check failure on line 11 in .github/workflows/lint.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/lint.yaml

Invalid workflow file

You have an error in your yaml syntax on line 11
solidity:
runs-on: ubuntu-latest
steps:
- name: Check out github repository
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Setup node.js
uses: actions/setup-node@v1
with:
node-version: '12.x'
- name: Set yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Restore yarn cache
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-${{ hashFiles('**/yarn.lock') }}
${{ runner.os }}-yarn-
- name: Install node.js dependencies
run: yarn --frozen-lockfile
- name: Run linter on *.sol and *.json
run: yarn lint:check
commits:
runs-on: ubuntu-latest
steps:
- name: Check out github repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Run commitlint
uses: wagoid/commitlint-github-action@v2
brownie:
runs-on: ubuntu-latest
steps:
- name: Check out github repository
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Set up python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Poetry
uses: abatilo/[email protected]
with:
poetry-version: 1.1.13
- name: Install dependencies
run: poetry install
- name: Run black
run: poetry run black --check --include "(tests|scripts)" .
# TODO: Add Slither Static Analyzer