generated from ghga-de/microservice-repository-template
-
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.
Update to python 3.12 (GSI-912) (#25)
* Bump version from 2.0.0 -> 2.0.1 Update template files Transition test fixtures to split container-client model Consolidate pytest asyncio markers where able and fix scope * Silence mypy * Be more specific with top-level dependencies * Update typer lower bound
- Loading branch information
1 parent
66ab1ed
commit da6dec1
Showing
88 changed files
with
1,818 additions
and
1,729 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
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
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
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
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
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 |
---|---|---|
@@ -1,16 +1,23 @@ | ||
name: Check if the config schema and the example are up to date. | ||
name: Check if pyproject.toml file is up to date | ||
|
||
on: push | ||
|
||
jobs: | ||
static-code-analysis: | ||
name: Check pyproject file | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Checkout repository | ||
id: checkout | ||
uses: actions/checkout@v4 | ||
|
||
- id: common | ||
uses: ghga-de/gh-action-common@v4 | ||
- name: Common steps | ||
id: common | ||
uses: ghga-de/gh-action-common@v6 | ||
|
||
- name: Check pyproject.toml | ||
id: check-pyproject | ||
run: | | ||
./scripts/update_pyproject.py --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 |
---|---|---|
@@ -1,16 +1,23 @@ | ||
name: Check if the readme is up to date. | ||
name: Check if the README file is up to date | ||
|
||
on: push | ||
|
||
jobs: | ||
static-code-analysis: | ||
name: Check README file | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Checkout repository | ||
id: checkout | ||
uses: actions/checkout@v4 | ||
|
||
- id: common | ||
uses: ghga-de/gh-action-common@v4 | ||
- name: Common steps | ||
id: common | ||
uses: ghga-de/gh-action-common@v6 | ||
|
||
- name: Check readme | ||
- name: Check README | ||
id: check-readme | ||
run: | | ||
./scripts/update_readme.py --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
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
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
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 |
---|---|---|
|
@@ -4,24 +4,36 @@ on: push | |
|
||
jobs: | ||
static-code-analysis: | ||
runs-on: ubuntu-latest | ||
name: Static Code Analysis | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Checkout repository | ||
id: checkout | ||
uses: actions/checkout@v4 | ||
|
||
- id: common | ||
uses: ghga-de/gh-action-common@v4 | ||
- name: Common steps | ||
id: common | ||
uses: ghga-de/gh-action-common@v6 | ||
|
||
- uses: pre-commit/[email protected] | ||
- name: Run pre-commit | ||
uses: pre-commit/[email protected] | ||
env: | ||
SKIP: no-commit-to-branch | ||
- name: ruff | ||
|
||
- name: Run ruff | ||
id: ruff | ||
run: | | ||
ruff check --output-format=github . | ||
ruff format --check . | ||
- name: mypy | ||
- name: Run mypy | ||
id: mypy | ||
run: | | ||
mypy . | ||
- name: Check license header and file | ||
id: license-checker | ||
run: | | ||
./scripts/license_checker.py | ||
./scripts/check_license.py |
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
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
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
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
Oops, something went wrong.