Skip to content

update wallet

update wallet #58

Workflow file for this run

name: pre-commit
on:
pull_request:
push:
branches: [dev, main]
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
cache: 'pip'
- run: python -m pip install -r requirements.txt && python -m pip install -r requirements-dev.txt
- uses: actions/cache@v4
with:
path: ~/.cache/pre-commit/
key: pre-commit-4|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }}
- run: echo "SKIP=semgrep" >> $GITHUB_ENV
- run: pre-commit run --show-diff-on-failure --color=always --all-files