mirror of
https://github.com/dnote/dnote
synced 2026-03-14 22:45:50 +01:00
53 lines
993 B
YAML
53 lines
993 B
YAML
name: CI
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-22.04
|
|
|
|
services:
|
|
postgres:
|
|
image: postgres:14
|
|
env:
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: postgres
|
|
POSTGRES_DB: dnote_test
|
|
POSTGRES_PORT: 5432
|
|
# Wait until postgres has started
|
|
options: >-
|
|
--health-cmd pg_isready
|
|
--health-interval 10s
|
|
--health-timeout 5s
|
|
--health-retries 5
|
|
|
|
# Expose port to the host
|
|
ports:
|
|
- 5432:5432
|
|
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- uses: actions/setup-go@v6
|
|
with:
|
|
go-version: '>=1.25.0'
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
make install
|
|
|
|
- name: Test cli
|
|
run: |
|
|
make test-cli
|
|
|
|
- name: Test app
|
|
run: |
|
|
make test-api
|
|
|
|
- name: Test e2e
|
|
run: |
|
|
make test-e2e
|