From 1c426d631650360ac99f8e86d3ae4599badee0e1 Mon Sep 17 00:00:00 2001 From: phoenix Date: Wed, 29 Oct 2025 20:19:07 -0400 Subject: [PATCH] Added gitignore --- .gitea/workflows/workflow.yaml | 27 +++++++++++++++++++++++++++ .gitignore | 0 README.md | 3 +++ go.mod | 3 +++ internal/place_files_here | 0 pkg/place_files_here | 0 6 files changed, 33 insertions(+) create mode 100644 .gitea/workflows/workflow.yaml create mode 100644 .gitignore create mode 100644 README.md create mode 100644 go.mod create mode 100644 internal/place_files_here create mode 100644 pkg/place_files_here diff --git a/.gitea/workflows/workflow.yaml b/.gitea/workflows/workflow.yaml new file mode 100644 index 0000000..71cf1b1 --- /dev/null +++ b/.gitea/workflows/workflow.yaml @@ -0,0 +1,27 @@ +name: Go CI + +on: [push, pull_request] # Triggers on push or pull request events + +jobs: + test: + name: Test and Lint + runs-on: ubuntu-24.04 + steps: + - name: Check out repository code + uses: actions/checkout@v5 + + - name: Set up Go + uses: actions/setup-go@v4 + with: + go-version: '1.25.3' + + - name: Download dependencies + run: go mod download + + - name: Run tests + run: go test -v ./... # Runs all tests in the project + + - name: Run linter + uses: https://github.com/golangci/golangci-lint-action@v3 + with: + version: latest diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/README.md b/README.md new file mode 100644 index 0000000..3b63566 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# textsender-models +A library containing functions, structs, types, and other code for the textsender +project diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..9678dc8 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module git.kundeng.us/phoenix/textsender-models + +go 1.25.3 diff --git a/internal/place_files_here b/internal/place_files_here new file mode 100644 index 0000000..e69de29 diff --git a/pkg/place_files_here b/pkg/place_files_here new file mode 100644 index 0000000..e69de29