Skip to content

Commit eb3f6f9

Browse files
committed
feat: add pull request validation workflow
1 parent f85ffde commit eb3f6f9

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/pr-checks.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
name: Pull Request validation
3+
4+
on:
5+
- pull_request
6+
7+
jobs:
8+
pre-commit:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout code
12+
id: checkout
13+
uses: actions/checkout@v4
14+
15+
- name: Set up Python
16+
id: setup-python
17+
uses: actions/setup-python@v5
18+
19+
- name: Run pre-commit checks
20+
id: pre-commit
21+
uses: cloudposse/github-action-pre-commit@v4.0.0

0 commit comments

Comments
 (0)