mirror of
https://github.com/ansible-collections/hetzner.hcloud
synced 2024-11-14 16:27:11 +00:00
24 lines
429 B
YAML
24 lines
429 B
YAML
|
name: Lint
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [main]
|
||
|
pull_request:
|
||
|
|
||
|
jobs:
|
||
|
pre-commit:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
|
||
|
- name: Setup python
|
||
|
uses: actions/setup-python@v4
|
||
|
with:
|
||
|
python-version: 3.x
|
||
|
|
||
|
- name: Install dependencies
|
||
|
run: pip install pre-commit
|
||
|
|
||
|
- name: Run pre-commit
|
||
|
run: pre-commit run --all-files --show-diff-on-failure
|