forked from apdevelop/linq2db-postgis-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ed9425f
commit 864551a
Showing
1 changed file
with
64 additions
and
0 deletions.
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,64 @@ | ||
name: PostGIS_3.3 | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
test_on_postgis_33: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
dotnet-version: ["2.1.x"] | ||
postgis-version: | ||
[ | ||
"postgis/postgis:11-3.3-alpine", | ||
"postgis/postgis:12-3.3-alpine", | ||
"postgis/postgis:13-3.3-alpine", | ||
"postgis/postgis:14-3.3-alpine", | ||
"postgis/postgis:15-3.3-alpine", | ||
] | ||
services: | ||
postgis: | ||
image: ${{ matrix.postgis-version }} | ||
env: | ||
POSTGRES_USER: reader | ||
POSTGRES_PASSWORD: reader | ||
POSTGRES_DB: postgistest | ||
ports: | ||
- 5432:5432 | ||
options: >- | ||
--health-cmd pg_isready | ||
--health-interval 10s | ||
--health-timeout 5s | ||
--health-retries 5 | ||
steps: | ||
- name: init database table owm_cities | ||
run: psql -h localhost -p 5432 -d postgistest -U reader -c "CREATE TABLE IF NOT EXISTS owm_cities(id integer primary key, city_name varchar not null, geom geometry not null);" | ||
env: | ||
PGPASSWORD: reader | ||
|
||
- name: init database table test_geometry | ||
run: psql -h localhost -p 5432 -d postgistest -U reader -c "CREATE TABLE test_geometry(id integer primary key, geom geometry);" | ||
env: | ||
PGPASSWORD: reader | ||
|
||
- name: init database table test_geography | ||
run: psql -h localhost -p 5432 -d postgistest -U reader -c "CREATE TABLE test_geography(id integer primary key, geog geography);" | ||
env: | ||
PGPASSWORD: reader | ||
|
||
- name: get source | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }} | ||
uses: actions/[email protected] | ||
with: | ||
dotnet-version: ${{ matrix.dotnet-version }} | ||
|
||
- name: Install dependencies | ||
run: dotnet restore | ||
|
||
- name: Build | ||
run: dotnet build --configuration Release --no-restore | ||
- name: Test | ||
run: dotnet test --no-restore --verbosity normal |