Skip to content

Commit 8d66e71

Browse files
committed
feat: enable all tests
1 parent a62542d commit 8d66e71

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ on:
44
branches:
55
- master
66
pull_request:
7+
types: [opened, reopened, synchronize]
8+
# Allows you to run this workflow manually from the Actions tab
9+
workflow_dispatch:
710

811
jobs:
912
test-ubuntu-ruby:
@@ -49,4 +52,5 @@ jobs:
4952
run: bundle exec rake test
5053
env:
5154
PGHOST: localhost
55+
PGUSER: postgres
5256
PGPASSWORD: postgres

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ require "rake/testtask"
33
require_relative "test/rake_helper"
44

55
task default: [:test]
6-
task test: "test:postgis"
6+
task test: "test:all"
77

88
Rake::TestTask.new(:test_postgis) do |t|
99
t.libs << postgis_test_load_paths

0 commit comments

Comments
 (0)