commit 1c426d631650360ac99f8e86d3ae4599badee0e1 Author: phoenix Date: Wed Oct 29 20:19:07 2025 -0400 Added gitignore 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