ci: remove testing from main branch push, create own testing workflow
All checks were successful
Build and Push Docker Image / build (push) Successful in 55s

This commit is contained in:
Lars Hampe 2024-10-01 16:11:39 +02:00
parent 8ab8dec708
commit 8e650c9b0a
2 changed files with 49 additions and 26 deletions

View File

@ -8,22 +8,6 @@ on:
jobs:
build:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:17-alpine
env:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
POSTGRES_DB: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- name: Checkout
uses: actions/checkout@v3
@ -38,16 +22,6 @@ jobs:
- name: Install dependencies
run: bun install
- name: Push Database - Test
run: bun run db:push
env:
POSTGRES_URL: postgres://postgres:postgres@10.0.0.145:5432/postgres
- name: Test API
run: bun test:api
env:
POSTGRES_URL: postgres://postgres:postgres@10.0.0.145:5432/postgres
- name: Build
run: bun run build
env:

View File

@ -0,0 +1,49 @@
name: Test
run-name: ${{ gitea.actor }}
on:
push:
branches:
- *
jobs:
build:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:17-alpine
env:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
POSTGRES_DB: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.1.29
- name: Install dependencies
run: bun install
- name: Push Database - Test
run: bun run db:push
env:
POSTGRES_URL: postgres://postgres:postgres@10.0.0.145:5432/postgres
- name: Test API
run: bun test:api
env:
POSTGRES_URL: postgres://postgres:postgres@10.0.0.145:5432/postgres