ci: refactor workflows
Some checks failed
Build and Push Docker Image / tests (push) Successful in 29s
Build and Push Docker Image / build (push) Failing after 0s

This commit is contained in:
Lars Hampe 2024-10-01 19:00:39 +02:00
parent 024e96df55
commit 070a70c0b8
3 changed files with 18 additions and 32 deletions

View File

@ -0,0 +1,14 @@
name: Build and Push Docker Image
run-name: ${{ gitea.actor }}
on:
push:
branches:
- "!main"
- "**/*"
jobs:
tests:
uses: ./.gitea/workflows/test.yaml
build:
needs: [tests]
runs-on: ubuntu-latest

View File

@ -6,25 +6,11 @@ on:
- main
jobs:
tests:
uses: ./.gitea/workflows/test.yaml
build:
needs: [tests]
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
@ -39,16 +25,6 @@ jobs:
- name: Install dependencies
run: bun install
- name: Push Database - Test
run: bun run db:push
env:
POSTGRES_URL: postgres://postgres:postgres@postgres:5432/postgres
- name: Test API
run: bun test:api
env:
POSTGRES_URL: postgres://postgres:postgres@postgres:5432/postgres
- name: Build
run: bun run build
env:

View File

@ -1,10 +1,6 @@
name: Test
run-name: ${{ gitea.actor }}
on:
push:
branches:
- '**/*'
- '!main'
on: [workflow_call]
jobs:
build: