Skip to content

Commit aa2f148

Browse files
committed
feat: set up automated tests for scripts with dagger
1 parent eb457be commit aa2f148

File tree

210 files changed

+20880
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

210 files changed

+20880
-0
lines changed

.github/workflows/scripts.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Scripts
2+
3+
on:
4+
push:
5+
paths:
6+
- scripts/**
7+
8+
jobs:
9+
dagger:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v3
14+
- name: Test
15+
uses: dagger/dagger-for-github@v3
16+
with:
17+
workdir: scripts
18+
cmds: |
19+
project update
20+
do test

scripts/cue.mod/dagger.mod

Whitespace-only changes.

scripts/cue.mod/dagger.sum

Whitespace-only changes.

scripts/cue.mod/module.cue

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module: ""

scripts/cue.mod/pkg/.gitattributes

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/cue.mod/pkg/dagger.io/cue.mod/module.cue

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/cue.mod/pkg/dagger.io/dagger/compat.cue

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/cue.mod/pkg/dagger.io/dagger/core/exec.cue

+127
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/cue.mod/pkg/dagger.io/dagger/core/fs.cue

+151
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/cue.mod/pkg/dagger.io/dagger/core/git.cue

+32
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/cue.mod/pkg/dagger.io/dagger/core/http.cue

+49
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)