WIP: test de la CI
/ synchro (push) Failing after 1s Details

This commit is contained in:
Adrien Bourmault 2023-10-20 10:08:58 +02:00
parent 102885e90d
commit f65ec443ff
Signed by: neox
GPG Key ID: 2974E1D5F25DFCC8
1 changed files with 9 additions and 3 deletions

View File

@ -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 }}'."