Skip to content

Commit

Permalink
Merge branch 'main' of github.com:yinxulai/sqls into main
Browse files Browse the repository at this point in the history
  • Loading branch information
yinxulai committed Mar 23, 2024
2 parents 8b0cc50 + a8237a7 commit 2753149
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go

name: Test

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22.1'

- name: Test
run: go test -v ./...
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# sqls

[![Go test](https://github.com/yinxulai/sqls/actions/workflows/test.yml/badge.svg)](https://github.com/yinxulai/sqls/actions/workflows/test.yml)

sqls is prepared for developers who like to write `sql` by themselves instead of using `ORM`. There is nothing special, it just simply helps you edit `sql` better.

> The meaning of sqls is `sql+s`, where `s` means `string` and `simple`, `small`
Expand Down
2 changes: 2 additions & 0 deletions README_CN.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# sqls

[![Go test](https://github.com/yinxulai/sqls/actions/workflows/test.yml/badge.svg)](https://github.com/yinxulai/sqls/actions/workflows/test.yml)

sqls 是针对喜欢自己编写 `sql` 而不是使用 `ORM` 的开发者准备的,没有任何特殊的东西,只是简单的帮助你更好的编辑 `sql`

> sqls 的含义是 `sql+s`,其中 `s` 的含义是 `string` 以及 `simple``small`
Expand Down

0 comments on commit 2753149

Please sign in to comment.