Skip to content

Check if repos are archived 🧟 #19

Check if repos are archived 🧟

Check if repos are archived 🧟 #19

Workflow file for this run

name: pre-commit
on:
- pull_request
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Clone Repository
uses: actions/checkout@v3
- run: python -m pip install pre-commit
shell: bash
- run: python -m pip freeze --local
shell: bash
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21.x'
- uses: actions/cache@v3
with:
path: ~/.cache/pre-commit
key: pre-commit-3|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }}
- run: pre-commit run --show-diff-on-failure --color=always --all-files
shell: bash