From f65ec443ff009545b4055a91423c5c6847e0c974 Mon Sep 17 00:00:00 2001 From: "Adrien Bourmault (neox)" Date: Fri, 20 Oct 2023 10:08:58 +0200 Subject: [PATCH] WIP: test de la CI --- .forgejo/workflows/ci.yaml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/ci.yaml b/.forgejo/workflows/ci.yaml index fbb533a..2943739 100644 --- a/.forgejo/workflows/ci.yaml +++ b/.forgejo/workflows/ci.yaml @@ -1,11 +1,17 @@ -on: [push] +on: + push: + branches: + - 'master' + jobs: synchro: runs-on: linux_amd64 steps: + - uses: actions/checkout@v3 - name: List files in the repository + shell: bash run: | echo Sync files with server - echo "We are in ${{ github.action_path }}" - echo "We have : $(ls ${{ github.action_path }})" + echo "We are in $PWD" + echo "We have : $(ls)" - run: echo "Job ended with status '${{ job.status }}'."