Skip to content

Merge pull request #71 from nateglims/cdk-pipeline #176

Merge pull request #71 from nateglims/cdk-pipeline

Merge pull request #71 from nateglims/cdk-pipeline #176

Workflow file for this run

name: Linting
on:
push:
branches: ["**"]
pull_request:
branches: ["**"]
jobs:
Run-Pre-Commit:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Install Pre-Commit
run: pip install pre-commit
- name: Run Pre-Commit
run: pre-commit run --all-files --color=always --show-diff-on-failure