feat: resource cleanup

This commit is contained in:
bahdotsh
2025-04-21 16:42:16 +05:30
parent e0e0e6aba1
commit ef15744b3b
21 changed files with 1889 additions and 764 deletions

View File

@@ -1,12 +1,28 @@
name: Test
name: Docker Setup Workflow
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: 'ubuntu-latest'
setup:
runs-on: ubuntu-latest
steps:
- name: Hey
- name: Create Docker Network
run: docker network create app-network
- name: Start PostgreSQL Container
run: |
echo hello && echo world
docker run -d \
--name postgres \
--network app-network \
-p 5432:5432 \
-e POSTGRES_USER=postgres \
-e POSTGRES_PASSWORD=password \
-e POSTGRES_DB=testdb \
postgres:17