-
Notifications
You must be signed in to change notification settings - Fork 1
72 lines (58 loc) · 1.92 KB
/
Copy pathtests.yml
File metadata and controls
72 lines (58 loc) · 1.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# This workflow tests a Go project with PostgreSQL integration.
# For more details: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Tests
on:
push:
branches: [main]
paths-ignore:
- '**/*.md'
- 'docs/**'
- 'misc/**'
- 'examples/**'
pull_request:
branches: [main]
paths-ignore:
- '**/*.md'
- 'docs/**'
- 'misc/**'
- 'examples/**'
jobs:
tests-linux:
runs-on: ubuntu-latest
steps:
# Checkout the code
- uses: actions/checkout@v4
# Fetch full Git history for any dependencies that require it
- name: Fetch full Git history
run: git fetch --prune --unshallow
# Start PostgreSQL service
- name: Start PostgreSQL service
run: |
# Detect the PostgreSQL version dynamically
PG_VERSION=$(psql --version | awk '{print $3}' | cut -d. -f1)
PG_HBA_PATH="/etc/postgresql/$PG_VERSION/main/pg_hba.conf"
# Update authentication methods to trust for testing
sudo sed -i 's/peer/trust/; s/scram-sha-256/trust/' "$PG_HBA_PATH"
# Restart PostgreSQL service to apply changes
sudo systemctl restart postgresql.service
# Wait for PostgreSQL to become ready
pg_isready
# Create a test role
psql -U postgres --command="CREATE ROLE auth LOGIN NOINHERIT"
# Test PostgreSQL connection
- name: Test PostgreSQL connection
run: |
psql -U postgres -d postgres -c 'SELECT version();'
# Prepare for tests (e.g., initializing database schema)
- name: Prepare tests
run: make prepare-postgrest-tests
# Set up Go environment
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.24'
# Run tests
- name: Run tests
run: make test
env:
SMOOTHDB_DATABASE_URL: postgresql://postgres:postgres@localhost:5432/postgres