23 lines
389 B
YAML
23 lines
389 B
YAML
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: |
|
|
docker compose config
|