1 Commits

Author SHA1 Message Date
bacant150 2f8235965e Remove unnecessary rewind after file open
Test Agent / test-agent-run (push) Successful in 21s
2026-02-26 13:15:15 +02:00
2 changed files with 2 additions and 10 deletions
+1 -5
View File
@@ -1,15 +1,11 @@
name: Test Agent
on: [push, workflow_dispatch]
concurrency:
cancel-in-progress: false
jobs:
test-agent-run:
runs-on: arch-x86_64
steps:
- name: Fetch the repository
run: git clone --revision ${{ gitea.sha }} --depth 1 ${{ gitea.server_url }}/${{ gitea.repository }}
run: git clone --branch ${{ gitea.ref_name }} --depth 1 ${{ gitea.server_url }}/${{ gitea.repository }}
- name: Build containers
run: docker-compose -f docker-compose-test.yaml build
-4
View File
@@ -10,7 +10,3 @@ RUN pip install -r requirements.txt
COPY src/ .
# command to run on container start
CMD ["python", "main.py"]