tangled
alpha
login
or
join now
keii.dev
/
wisp
3
fork
atom
🧚 A practical web framework for Gleam
3
fork
atom
overview
issues
pulls
pipelines
Clearer names on CI
Louis Pilfold
2 years ago
d9f93fb8
33b06dbf
+18
-9
1 changed file
expand all
collapse all
unified
split
.github
workflows
ci.yml
+18
-9
.github/workflows/ci.yml
···
21
21
- run: gleam deps download
22
22
- run: gleam test
23
23
24
24
-
- run: gleam test
24
24
+
- name: "Example: 0-hello-world"
25
25
+
run: gleam test
25
26
working-directory: examples/0-hello-world
26
27
27
27
-
- run: gleam test
28
28
+
- name: "Example: 1-routing"
29
29
+
run: gleam test
28
30
working-directory: examples/1-routing
29
31
30
30
-
- run: gleam test
32
32
+
- name: "Example: 2-working-with-form-data"
33
33
+
run: gleam test
31
34
working-directory: examples/2-working-with-form-data
32
35
33
33
-
- run: gleam test
36
36
+
- name: "Example: 3-working-with-json"
37
37
+
run: gleam test
34
38
working-directory: examples/3-working-with-json
35
39
36
36
-
- run: gleam test
40
40
+
- name: "Example: 4-working-with-other-formats"
41
41
+
run: gleam test
37
42
working-directory: examples/4-working-with-other-formats
38
43
39
39
-
- run: gleam test
44
44
+
- name: "Example: 5-using-a-database"
45
45
+
run: gleam test
40
46
working-directory: examples/5-using-a-database
41
47
42
42
-
- run: gleam test
48
48
+
- name: "Example: 6-serving-static-assets"
49
49
+
run: gleam test
43
50
working-directory: examples/6-serving-static-assets
44
51
45
45
-
- run: gleam test
52
52
+
- name: "Example: 7-logging"
53
53
+
run: gleam test
46
54
working-directory: examples/7-logging
47
55
48
48
-
- run: gleam test
56
56
+
- name: "Example: 8-working-with-cookies"
57
57
+
run: gleam test
49
58
working-directory: examples/8-working-with-cookies