commit 45970bb54dad7590445a7a550b0f5df9743f7edf Author: Damien Arnodo Date: Tue Aug 26 10:01:25 2025 +0000 Ajouter .gitea/workflows/test.yml diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml new file mode 100644 index 0000000..bff59e1 --- /dev/null +++ b/.gitea/workflows/test.yml @@ -0,0 +1,16 @@ +name: Docker CI + +on: + push: + branches: [ main ] + +jobs: + build: + runs-on: docker + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Test docker container + run: | + docker run --rm alpine echo "Hello from Docker inside Gitea Actions!"