This commit is contained in:
2025-03-11 22:32:36 -05:00
parent d7f41b785f
commit e486923e8f
2 changed files with 30 additions and 2 deletions

28
.github/workflows/gosec.yml vendored Normal file
View File

@@ -0,0 +1,28 @@
name: "Security Scan"
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: '0 0 * * 0'
jobs:
tests:
runs-on: ubuntu-latest
permissions:
security-events: write
env:
GO111MODULE: on
steps:
- name: Checkout Source
uses: actions/checkout@v4
- name: Run Gosec Security Scanner
uses: securego/gosec@master
with:
args: '-no-fail -fmt sarif -out results.sarif ./...'
- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: results.sarif

View File

@@ -1,11 +1,11 @@
# Reticulum-Go # Reticulum-Go
> [!NOTE] > [!NOTE]
> This is WIP and not ready as of MAR 2025, I am busy but will work on when I am able to. > This is WIP and not ready as of MAR 2025, I am busy but will work on it when I am able to.
[Reticulum Network](https://github.com/markqvist/Reticulum) implementation in Go. [Reticulum Network](https://github.com/markqvist/Reticulum) implementation in Go.
Aiming for full spec compatibility with the Python version 0.8.8+. Aiming for full spec compatibility with the Python version 0.9.2.
`Go 1.24.0` `Go 1.24.0`