We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f27f2f8 commit 8624c86Copy full SHA for 8624c86
.github/workflows/dagger.yaml
@@ -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
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