This commit is contained in:
parent
6648fd6346
commit
161e917e81
1 changed files with 23 additions and 0 deletions
23
.forgejo/workflows/test.yml
Normal file
23
.forgejo/workflows/test.yml
Normal file
|
|
@ -0,0 +1,23 @@
|
||||||
|
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
|
||||||
Loading…
Add table
Add a link
Reference in a new issue