We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a62542d commit 8d66e71Copy full SHA for 8d66e71
.github/workflows/tests.yml
@@ -4,6 +4,9 @@ on:
4
branches:
5
- master
6
pull_request:
7
+ types: [opened, reopened, synchronize]
8
+ # Allows you to run this workflow manually from the Actions tab
9
+ workflow_dispatch:
10
11
jobs:
12
test-ubuntu-ruby:
@@ -49,4 +52,5 @@ jobs:
49
52
run: bundle exec rake test
50
53
env:
51
54
PGHOST: localhost
55
+ PGUSER: postgres
56
PGPASSWORD: postgres
Rakefile
@@ -3,7 +3,7 @@ require "rake/testtask"
3
require_relative "test/rake_helper"
task default: [:test]
-task test: "test:postgis"
+task test: "test:all"
Rake::TestTask.new(:test_postgis) do |t|
t.libs << postgis_test_load_paths
0 commit comments