Skip to content

Commit 45ed9b1

Browse files
authored
Merge pull request #3 from jackylamhk/dev
BREAKING CHANGE: Version bump trigger
2 parents af3ee2f + 63ad03d commit 45ed9b1

File tree

6 files changed

+20
-11
lines changed

6 files changed

+20
-11
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@jackylamhk

.github/workflows/build-publish.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,6 @@ on:
77
- http_csp/**
88
- pyproject.toml
99
- poetry.lock
10-
pull_request:
11-
branches:
12-
- main
13-
paths:
14-
- http_csp/**
15-
- pyproject.toml
16-
- poetry.lock
1710

1811
permissions:
1912
id-token: write

.github/workflows/quality.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,3 @@ jobs:
5959
run: |
6060
poetry export --without-hashes -f requirements.txt | \
6161
poetry run safety check --full-report --stdin
62-
63-
- name: Create code coverage report
64-
uses: MishaKav/pytest-coverage-comment@main

.pre-commit-config.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
repos:
2+
- repo: https://github.com/jorisroovers/gitlint
3+
rev: v0.19.1
4+
hooks:
5+
- id: gitlint
6+
7+
- repo: https://github.com/psf/black
8+
rev: 23.9.0
9+
hooks:
10+
- id: black
11+
language_version: python3.11
12+
13+
- repo: https://github.com/python-poetry/poetry
14+
rev: 1.6.0
15+
hooks:
16+
- id: poetry-check
17+
- id: poetry-lock
18+
- id: poetry-export
19+
args: ["--without-hashes", "-f", "requirements.txt", "-o", "requirements.txt"]

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,3 @@ safety = "^2.3.5"
2020
[build-system]
2121
requires = ["poetry-core"]
2222
build-backend = "poetry.core.masonry.api"
23-
File renamed without changes.

0 commit comments

Comments
 (0)