-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit fc1be41
Showing
5 changed files
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#SPDX-FileCopyrightText: 2024 Birger Schacht | ||
#SPDX-License-Identifier: MIT | ||
name: Run deptry dependency checker | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
deptry: | ||
uses: acdh-oeaw/prosnet-workflows/.github/workflows/[email protected] | ||
with: | ||
src: "." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#SPDX-FileCopyrightText: 2023 Birger Schacht | ||
#SPDX-License-Identifier: MIT | ||
|
||
name: Run commit message linter | ||
on: | ||
pull_request: | ||
|
||
jobs: | ||
gitlint: | ||
uses: acdh-oeaw/prosnet-workflows/.github/workflows/[email protected] | ||
with: | ||
comment: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# SPDX-FileCopyrightText: 2023 Birger Schacht <[email protected]> | ||
# SPDX-License-Identifier: MIT | ||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
permissions: | ||
contents: write | ||
pull-requests: write | ||
|
||
name: release-please | ||
|
||
jobs: | ||
release-please: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: googleapis/release-please-action@v3 | ||
with: | ||
release-type: python | ||
package-name: sparql_fastapi | ||
bump-minor-pre-major: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#SPDX-FileCopyrightText: 2023 Birger Schacht | ||
#SPDX-License-Identifier: MIT | ||
name: Run ruff formatter | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
ruff: | ||
uses: acdh-oeaw/prosnet-workflows/.github/workflows/[email protected] | ||
with: | ||
src: "." | ||
options: "format --check" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#SPDX-FileCopyrightText: 2023 Birger Schacht | ||
#SPDX-License-Identifier: MIT | ||
name: Run ruff linter | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
ruff: | ||
uses: acdh-oeaw/prosnet-workflows/.github/workflows/[email protected] | ||
with: | ||
src: "." |