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 d5614524ff - Show all commits

View file

@ -0,0 +1,17 @@
on:
push:
branches:
- 'main'
- 'vlbeaudoin/*'
jobs:
checkout-then-print-content:
runs-on: docker
steps:
- name: checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.24.5' # Adjust to your required version
- name: check go version
run: go version