Skip to content

Enable GH support button #13

Enable GH support button

Enable GH support button #13

Workflow file for this run

name: dApp Build and Test
on: [push]
jobs:
build-and-test:
name: Build & Test dApp
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install pipenv
run: |
python -m pip install --upgrade pipenv wheel
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.10.4
cache: 'pipenv'
- name: Install dependencies
run: |
pipenv install --deploy --dev
- uses: pre-commit/[email protected]
name: "Linters and formatters check"
with:
extra_args: --all-files