Skip to content

Commit 8624c86

Browse files
committed
.github/workflows: add a dagger workflows
Trying this out 😇 Signed-off-by: Vincent Demeester <[email protected]>
1 parent f27f2f8 commit 8624c86

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/dagger.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: dagger (test)
2+
3+
on:
4+
push:
5+
branches: [ main, 'release/**' ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
ci:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v2
14+
with:
15+
fetch-depth: 1
16+
- name: install dagger
17+
uses: dagger/dagger-for-github@v2
18+
with:
19+
install-only: true
20+
- name: image
21+
run: dagger do image
22+
- name: "tkn-local"
23+
run: dagger do tkn-local
24+
- name: test
25+
run: dagger do test

0 commit comments

Comments
 (0)