-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[postgres] Support numeric columns with "NaN" values
- Loading branch information
1 parent
6c23184
commit c8c114f
Showing
5 changed files
with
149 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Go tests | ||
|
||
on: [push] | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: 1.23 | ||
- name: Install dependencies | ||
run: go mod download | ||
- name: Run vet | ||
run: make vet | ||
- name: Run staticcheck | ||
env: | ||
SC_VERSION: "2024.1.1" | ||
run: | | ||
SC_URL="https://github.com/dominikh/go-tools/releases/download/$SC_VERSION/staticcheck_linux_amd64.tar.gz" | ||
wget -q ${SC_URL} -O - | tar -xzf - --strip-components 1 -C /usr/local/bin staticcheck/staticcheck | ||
make static | ||
- name: Run tests + race condition check | ||
run: make race | ||
- name: Check Go files are properly formatted | ||
run: test -z $(gofmt -l .) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
name: Integration tests | ||
|
||
on: [push] | ||
|
||
jobs: | ||
Postgres: | ||
runs-on: ubuntu-latest | ||
container: golang:1.23 | ||
services: | ||
postgres: | ||
image: postgis/postgis:16-3.4-alpine | ||
env: | ||
POSTGRES_PASSWORD: postgres | ||
options: >- | ||
--health-cmd pg_isready | ||
--health-interval 10s | ||
--health-timeout 5s | ||
--health-retries 5 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: 1.23 | ||
- name: Run integration test | ||
run: PG_HOST=postgres make postgres-itest | ||
MySQL: | ||
runs-on: ubuntu-latest | ||
container: golang:1.23 | ||
services: | ||
mysql: | ||
image: mysql:8.3 | ||
env: | ||
MYSQL_ROOT_PASSWORD: mysql | ||
options: >- | ||
--health-cmd "mysqladmin ping" | ||
--health-interval 10s | ||
--health-timeout 5s | ||
--health-retries 5 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: 1.23 | ||
- name: Run integration test | ||
run: MYSQL_HOST=mysql make mysql-itest | ||
MongoDB: | ||
runs-on: ubuntu-latest | ||
container: golang:1.23 | ||
services: | ||
mongo: | ||
image: mongo:7.0 | ||
env: | ||
MONGO_INITDB_ROOT_USERNAME: root | ||
MONGO_INITDB_ROOT_PASSWORD: example | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: 1.23 | ||
- name: Run integration test | ||
run: MONGO_HOST=mongodb://mongo make mongo-itest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters