Skip to content

feat(tf): update aliases #155

feat(tf): update aliases

feat(tf): update aliases #155

---
name: Check code with pre-commit
#
# Documentation:
# https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions
#
on:
push:
jobs:
build:
# Name the Job
name: Run pre-commit
# Set the agent to run on
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name:
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Run pre-commit
run: |
python -m pip install --upgrade pip
pip install pre-commit
pre-commit run --all-files --show-diff-on-failure