-
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.
Merge pull request #9 from e-gov/feature/intial-tasa
tasa initial
- Loading branch information
Showing
15 changed files
with
3,255 additions
and
1 deletion.
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,2 @@ | ||
[bandit] | ||
skips = B608,B601 |
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,17 @@ | ||
[flake8] | ||
# Max line length compatible with Black | ||
max-line-length = 100 | ||
|
||
# Directories and files to exclude from linting | ||
exclude = | ||
venv, | ||
.git, | ||
__pycache__, | ||
build, | ||
dist, | ||
tests/* | ||
|
||
# Ignore rules that conflict with Black formatting | ||
ignore = | ||
E203, | ||
W503 |
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,169 @@ | ||
name: Build and Release | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- develop | ||
- 'feature/**' | ||
- 'bugfix/**' | ||
paths-ignore: | ||
- "**/README.md" | ||
|
||
permissions: | ||
contents: write # Necessary for pushing tags to the repository | ||
|
||
jobs: | ||
versioning: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
VERSION: ${{ steps.get_version.outputs.VERSION }} | ||
BUILD_TYPE: ${{ steps.get_version.outputs.BUILD_TYPE }} | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Get version information | ||
id: get_version | ||
run: | | ||
COMMIT_HASH=$(git rev-parse --short HEAD) | ||
BUILD_ID=${GITHUB_RUN_NUMBER} | ||
YEAR=$(date +'%y') | ||
WEEK=$(date +'%U') | ||
Z=0 | ||
if [[ "${GITHUB_REF_NAME}" == "main" ]]; then | ||
VERSION="${YEAR}.${WEEK}.${Z}-${BUILD_ID}" | ||
BUILD_TYPE="stable" | ||
elif [[ "${GITHUB_REF_NAME}" == "develop" ]]; then | ||
VERSION="${YEAR}.${WEEK}.${Z}-${COMMIT_HASH}-rc.${BUILD_ID}" | ||
BUILD_TYPE="rc" | ||
elif [[ "${GITHUB_REF_NAME}" == bugfix/* ]]; then | ||
Z=1 # Increment z for bugfix branches | ||
VERSION="${YEAR}.${WEEK}.${Z}-${COMMIT_HASH}-dev.${BUILD_ID}" | ||
BUILD_TYPE="dev" | ||
elif [[ "${GITHUB_REF_NAME}" == feature/* ]]; then | ||
VERSION="${YEAR}.${WEEK}.${Z}-${COMMIT_HASH}-dev.${BUILD_ID}" | ||
BUILD_TYPE="dev" | ||
else | ||
echo "Unsupported branch type: ${GITHUB_REF_NAME}" | ||
exit 1 | ||
fi | ||
echo "VERSION=${VERSION}" >> $GITHUB_OUTPUT | ||
echo "BUILD_TYPE=${BUILD_TYPE}" >> $GITHUB_OUTPUT | ||
build-windows: | ||
runs-on: windows-latest | ||
needs: versioning | ||
env: | ||
VERSION: ${{ needs.versioning.outputs.VERSION }} | ||
BUILD_TYPE: ${{ needs.versioning.outputs.BUILD_TYPE }} | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.12.7 | ||
|
||
- name: Install Dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r requirements.txt | ||
pip install nuitka | ||
- name: Build executable | ||
run: | | ||
mkdir build | ||
nuitka --standalone --onefile --output-dir=build/windows --output-filename=tasa.exe src/gui.py ` | ||
--include-data-files=src/low.png=low.png --assume-yes-for-downloads | ||
- name: Upload artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: tasa-windows | ||
path: build/windows/tasa.exe | ||
|
||
build-linux: | ||
runs-on: ubuntu-latest | ||
needs: versioning | ||
env: | ||
VERSION: ${{ needs.versioning.outputs.VERSION }} | ||
BUILD_TYPE: ${{ needs.versioning.outputs.BUILD_TYPE }} | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.12.7 | ||
|
||
- name: Install Dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r requirements.txt | ||
pip install nuitka | ||
- name: Build executable | ||
run: | | ||
mkdir -p build/linux | ||
nuitka --standalone --onefile --output-dir=build/linux --output-filename=tasa src/gui.py \ | ||
--include-data-files=src/low.png=low.png --assume-yes-for-downloads | ||
- name: Upload artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: tasa-linux | ||
path: build/linux/tasa | ||
|
||
tag_and_release: | ||
runs-on: ubuntu-latest | ||
needs: | ||
- build-windows | ||
- build-linux | ||
- versioning | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Set up Git user | ||
run: | | ||
git config user.name "${{ github.actor }}" | ||
git config user.email "${{ github.actor }}@users.noreply.github.com" | ||
- name: Create Git Tag | ||
run: | | ||
git tag -a "v${{ needs.versioning.outputs.VERSION }}" -m "Release v${{ needs.versioning.outputs.VERSION }}" | ||
git push origin "v${{ needs.versioning.outputs.VERSION }}" | ||
- name: Download Windows artifact | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: tasa-windows | ||
path: artifacts/tasa-windows | ||
|
||
- name: Download Linux artifact | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: tasa-linux | ||
path: artifacts/tasa-linux | ||
|
||
- name: Create GitHub Release | ||
uses: ncipollo/release-action@v1 | ||
with: | ||
artifacts: | | ||
artifacts/tasa-windows/tasa.exe | ||
artifacts/tasa-linux/tasa | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
tag: v${{ needs.versioning.outputs.VERSION }} | ||
name: Release v${{ needs.versioning.outputs.VERSION }} | ||
body: | | ||
This release contains the following: | ||
- Built files: tasa.exe (Windows), tasa (Linux) | ||
- Build Type: ${{ needs.versioning.outputs.BUILD_TYPE }} | ||
draft: true # Set to false if you want it published immediately |
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,65 @@ | ||
name: Code Quality and Security Checks | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
- develop | ||
|
||
jobs: | ||
quality_and_security_checks: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
# Step 1: Checkout code | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
# Step 2: Set up Python environment | ||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.12.7 | ||
|
||
# Step 3: Install dependencies | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r requirements.txt | ||
pip install pylint flake8 black bandit mypy pip-audit radon xenon semgrep | ||
# Step 4: Format code with Black (Check Only) | ||
- name: Check code formatting with Black | ||
run: black --check src | ||
|
||
# Step 5: Lint with Pylint | ||
- name: Run Pylint | ||
run: pylint $(find src -name "*.py" -not -path "./venv/*") | ||
|
||
# Step 6: Check code style with Flake8 | ||
- name: Run Flake8 | ||
run: flake8 src --exclude=venv | ||
|
||
# Step 7: Type Checking with Mypy | ||
- name: Run Mypy | ||
run: mypy src | ||
|
||
# Step 8: Static Analysis for Security Issues with Bandit | ||
- name: Run Bandit | ||
run: bandit -r src --exclude ./venv --ini .bandit | ||
|
||
# Step 9: Dependency Vulnerability Check with pip-audit | ||
- name: Run Pip-audit | ||
run: pip-audit | ||
|
||
# Step 10: Analyze Code Complexity with Radon | ||
- name: Run Radon | ||
run: radon cc src -s -a | ||
|
||
# Step 11: Monitor Code Quality Metrics with Xenon | ||
- name: Run Xenon | ||
run: xenon src --max-absolute B --max-modules B --max-average A | ||
|
||
# Step 12: Lightweight Static Analysis with Semgrep | ||
- name: Run Semgrep | ||
run: semgrep --config auto |
Oops, something went wrong.