Skip to content

Update README.md

Update README.md #35

Workflow file for this run

name: pre-commit
on:
pull_request:
push:
branches: [main]
jobs:
pre-commit:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9"]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
check-latest: true
- name: Install Wily
run: pip install wily
- name: Build cache and diff
run: wily build .
- name: Run pre-commit
uses: pre-commit/action@v3.0.0