-
Notifications
You must be signed in to change notification settings - Fork 5
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
1 parent
2adf8fe
commit 63143a6
Showing
11 changed files
with
134 additions
and
51 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 |
---|---|---|
|
@@ -4,7 +4,7 @@ on: | |
push: | ||
branches: [ main ] | ||
|
||
name: 📜 API Documentation | ||
name: 📜 Document API | ||
|
||
jobs: | ||
build: | ||
|
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ on: | |
pull_request: | ||
branches: [main] | ||
|
||
name: 🔎 Code Coverage | ||
name: 🔎 Code Test Coverage | ||
|
||
jobs: | ||
grcov: | ||
|
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: 📦🏗 Build Package(s) | ||
|
||
on: | ||
workflow_dispatch: # Run when manually triggered | ||
inputs: | ||
branch: | ||
description: 'The branch to act on' | ||
default: 'main' | ||
required: false | ||
type: string | ||
release_channel: | ||
description: 'The release channel - Stable or Unstable' | ||
default: 'stable' | ||
required: false | ||
type: choice | ||
options: | ||
- Stable | ||
- Unstable | ||
workflow_call: # Run when called by another workflow | ||
inputs: | ||
branch: | ||
description: 'The branch to act on' | ||
default: 'main' | ||
required: false | ||
type: string | ||
release_channel: | ||
description: 'The release channel - Stable or Unstable' | ||
default: 'stable' | ||
required: false | ||
type: choice | ||
options: | ||
- Stable | ||
- Unstable | ||
|
||
run-name: ${{ inputs.release_channel }} Package Build triggered by ${{ github.actor }} on branch ${{ inputs.branch }} |
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,21 +1,24 @@ | ||
on: | ||
workflow_dispatch: | ||
workflow_call: | ||
push: | ||
paths: | ||
- '.github/workflows/security_audit.yml' # Run when this workflow changes | ||
- '**/Cargo.toml' # Run when dependencies change | ||
- '**/Cargo.lock' # Run when dependencies change | ||
schedule: | ||
- cron: '25 0 * * *' | ||
- cron: '0 0 * * *' # Run periodically to capture recent developments | ||
workflow_dispatch: # Run when manually triggered | ||
workflow_call: # Run when called by another workflow | ||
|
||
name: 🕵️♂️ Security Audit | ||
|
||
jobs: | ||
audit: | ||
name: 🕵️♂️ Security Audit | ||
name: 🕵️♂️ Security Audit Job | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: 🎟 Checkout Git Repository | ||
id: checkout_repository_step | ||
uses: actions/checkout@v2 | ||
- name: 🕵️♂️ Security Audit | ||
- name: 🎟 Checkout Git Repository Step | ||
id: repository_checkout_step | ||
uses: actions/checkout@v4 | ||
- name: 🕵️♂️ Security Audit Step | ||
id: audit_step | ||
uses: actions-rs/audit-check@v1 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
uses: actions-rust-lang/audit@v1 |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#[derive(Debug, Snafu)] | ||
#[non_exhaustive] | ||
pub enum Error { | ||
#[non_exhaustive] | ||
#[snafu(display(""))] | ||
Dummy {}, | ||
} | ||
|
||
// region: IMPORTS | ||
|
||
use snafu::Snafu; | ||
|
||
// endregion: IMPORTS |
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