Skip to content

Commit de7bb4a

Browse files
authored
introduced CI pipeline (#1)
1 parent e33b236 commit de7bb4a

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

.github/workflows/main.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: CI
2+
on:
3+
push:
4+
branches: [ "main" ]
5+
pull_request:
6+
branches: [ "main" ]
7+
workflow_dispatch:
8+
jobs:
9+
pre-commit:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v3
13+
- uses: actions/setup-python@v3
14+
- uses: pre-commit/[email protected]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ This repository aims to contain pre-commit hooks that are useful for multiple pr
44
Feel free to collaborate and submit pull requests!
55

66
# Current pre-commit hooks
7-
## python-requirements-version-mandatory
7+
## python-requirements-version-mandatory
88
Ensures that requirements listed in a requirements.txt file have a specified version.

0 commit comments

Comments
 (0)