force rebuild #43
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
# ⚠️ DO NOT EDIT THIS FILE, IT IS GENERATED BY COPIER ⚠️ | |
# Changes here will be lost on a future update. | |
# See: https://github.com/ingadhoc/addons-repo-template | |
name: pre-commit | |
on: | |
push: | |
branches: "*.0" | |
pull_request: | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
- | |
id: setup-python | |
name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
cache: "pip" | |
- | |
name: Pre-commit cache | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cache/pre-commit | |
key: pre-commit|${{ steps.setup-python.outputs.python-version }}|${{ hashFiles('.pre-commit-config.yaml') }} | |
- | |
name: Pre-commit | |
uses: pre-commit/action@v3.0.1 |