chore(deps): update wagoid/commitlint-github-action digest to 3d28780 #17
Workflow file for this run
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: Check code/commit conventions | |
on: push | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: hmarr/debug-action@f7318c783045ac39ed9bb497e22ce835fdafbfe6 | |
- uses: actions/checkout@3b9b8c884f6b4bb4d5be2779c26374abadae0871 | |
- name: Install asdf tools | |
uses: egose/actions/asdf-tools@e50c390a082e32951b387c91f1416f1c14c15f1b | |
- name: Install python tools | |
run: | | |
pip install -r requirements.txt | |
asdf reshim | |
- name: Rerun Pre-Commit Hooks on CI | |
run: pre-commit run --color=always --show-diff-on-failure --all-files | |
commitlint: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@3b9b8c884f6b4bb4d5be2779c26374abadae0871 | |
with: | |
fetch-depth: 0 | |
- uses: wagoid/commitlint-github-action@3d28780bbf0365e29b144e272b2121204d5be5f3 |