Skip to content

Commit

Permalink
add dagger pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
chrira committed Nov 12, 2024
1 parent 3dc71f7 commit b988bf7
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/dagger.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: 'Full Dagger Pipeline'
on:
push:
branches:
- dagger-ci
jobs:
lint:
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v4
- name: 'pipeline'
uses: dagger/[email protected]
with:
# Dagger Version
version: 0.14.0
# Dagger CLI Flags
#dagger-flags: # optional, default is --progress plain
# CLI verb (call, run, download, up, functions, shell, query)
verb: call
# The working directory in which to run the Dagger CLI
workdir: .
# Dagger Cloud Token
cloud-token: ${{ secrets.DAGGER_CLOUD_TOKEN }}
# Dagger module to call. Local or Git
module: .
# Arguments to pass to CLI
args: ci-integration --dir=./
- name: Test Reporter
uses: dorny/[email protected]

0 comments on commit b988bf7

Please sign in to comment.