Skip to content

Commit 038bae6

Browse files
committed
wip
1 parent afd40f2 commit 038bae6

File tree

5 files changed

+51
-2
lines changed

5 files changed

+51
-2
lines changed

.github/workflows/tests.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
on:
2+
push:
3+
branches:
4+
- main
5+
pull_request:
6+
branches:
7+
- main
8+
name: tests
9+
jobs:
10+
build:
11+
strategy:
12+
matrix:
13+
go-version: [1.21.x, 1.20.x]
14+
os: [ubuntu-latest]
15+
runs-on: ${{ matrix.os }}
16+
steps:
17+
- uses: actions/checkout@v3
18+
- name: Setup Go
19+
uses: actions/setup-go@v4
20+
with:
21+
go-version: ${{ matrix.go-version }}
22+
- name: Run Go tests
23+
run: go test -v ./...

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
profile.out
2+
templateless-go.test

README.md

+22-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,22 @@
1-
# templateless-go
2-
Send emails in Go (Golang) with just code 🚀
1+
# Templateless Go
2+
3+
[![GoDoc](https://godoc.org/github.com/templateless/templateless-go?status.svg)](https://godoc.org/github.com/templateless/templateless-go)
4+
[![Github Actions](https://img.shields.io/github/actions/workflow/status/templateless/templateless-go/tests.yml)](https://github.com/templateless/templateless-go/actions)
5+
6+
## What is this?
7+
8+
[Templateless](https://templateless.com) lets you quickly create and send emails with your favorite email provider without ever leaving your code editor.
9+
10+
Don't waste time messing around with HTML or HTML builders.
11+
12+
**Get your free API key [here](https://app.templateless.com).**
13+
14+
## Quick Example
15+
16+
```go
17+
@TODO
18+
```
19+
20+
## License
21+
22+
[MIT](LICENSE)

go.mod

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module github.com/templateless/templateless-go
2+
3+
go 1.21

templateless.go

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package templateless

0 commit comments

Comments
 (0)