2026-06-06 13:10:34 +00:00
|
|
|
name: Test pipeline
|
|
|
|
|
|
|
|
|
|
on:
|
|
|
|
|
push:
|
|
|
|
|
branches:
|
|
|
|
|
- master
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
test:
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
steps:
|
|
|
|
|
- name: Checkout repository
|
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
|
|
|
|
|
- name: Show files
|
|
|
|
|
run: |
|
|
|
|
|
pwd
|
|
|
|
|
ls -la
|
|
|
|
|
find . -maxdepth 2 -type f | sort
|
|
|
|
|
|
|
|
|
|
- name: Check Docker Compose config
|
|
|
|
|
run: |
|
2026-06-06 13:22:41 +00:00
|
|
|
cp .env.example .env
|
|
|
|
|
docker compose config
|