1
0
forked from MTSR/mapserver
mapserver/.github/workflows/go-test.yml
Buckaroo Banzai be38c83fd8
db cleanup (#341)
* db cleanup

* dev

* pg setup

* postgres uuid migration

* cleanup

* fk

* sqlite migration

* cleanup

* wal

* max open conns = 1

* fix panic

---------

Co-authored-by: BuckarooBanzay <BuckarooBanzay@users.noreply.github.com>
2023-12-27 10:35:24 +01:00

21 lines
368 B
YAML

name: go-test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4.0.0
with:
go-version: '1.21'
- name: test
run: go test ./... -coverprofile=profile.cov
- uses: shogo82148/actions-goveralls@v1.6.0
with:
path-to-profile: profile.cov