Implémenter workflow d'intégration continue de base #247

Merged
vlbeaudoin merged 21 commits from vlbeaudoin/actions into main 2025-07-12 22:15:13 -04:00
Showing only changes of commit 4d8f56d7d5 - Show all commits

View file

@ -0,0 +1,21 @@
on:
push:
branches:
- 'vlbeaudoin/*'
jobs:
hello-world:
runs-on: docker
steps:
- run: echo Hello world from dockerhost
print-content:
runs-on: docker
steps:
- name: list directory contents
run: ls -la
checkout-then-print-content:
runs-on: docker
steps:
- name: checkout code
uses: actions/checkout@v4
- name: list directory contents
run: ls -la