Enable GH support button #13
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
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/action@v2.0.3 | |
name: "Linters and formatters check" | |
with: | |
extra_args: --all-files |