ci(build): ajouter setup-go
All checks were successful
/ checkout-then-print-content (push) Successful in 1m4s
All checks were successful
/ checkout-then-print-content (push) Successful in 1m4s
This commit is contained in:
parent
59db4826ed
commit
d5614524ff
1 changed files with 17 additions and 0 deletions
17
.forgejo/workflows/build.yaml
Normal file
17
.forgejo/workflows/build.yaml
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue