ci: ajouter workflow build.yaml de base
This commit is contained in:
parent
ca8bfad5cc
commit
4d8f56d7d5
1 changed files with 21 additions and 0 deletions
21
.forgejo/workflows/build.yaml
Normal file
21
.forgejo/workflows/build.yaml
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue