🧚 A practical web framework for Gleam

Run new example on CI

Changed files
+26 -18
.github
workflows
+26 -18
.github/workflows/ci.yml
··· 21 21 - run: gleam deps download 22 22 - run: gleam test 23 23 24 - - name: "Example: 0-hello-world" 24 + - name: "Example: 00-hello-world" 25 25 run: gleam test 26 - working-directory: examples/0-hello-world 26 + working-directory: examples/00-hello-world 27 27 28 - - name: "Example: 1-routing" 28 + - name: "Example: 01-routing" 29 29 run: gleam test 30 - working-directory: examples/1-routing 30 + working-directory: examples/01-routing 31 31 32 - - name: "Example: 2-working-with-form-data" 32 + - name: "Example: 02-working-with-form-data" 33 33 run: gleam test 34 - working-directory: examples/2-working-with-form-data 34 + working-directory: examples/02-working-with-form-data 35 35 36 - - name: "Example: 3-working-with-json" 36 + - name: "Example: 03-working-with-json" 37 37 run: gleam test 38 - working-directory: examples/3-working-with-json 38 + working-directory: examples/03-working-with-json 39 39 40 - - name: "Example: 4-working-with-other-formats" 40 + - name: "Example: 04-working-with-other-formats" 41 41 run: gleam test 42 - working-directory: examples/4-working-with-other-formats 42 + working-directory: examples/04-working-with-other-formats 43 43 44 - - name: "Example: 5-using-a-database" 44 + - name: "Example: 05-using-a-database" 45 45 run: gleam test 46 - working-directory: examples/5-using-a-database 46 + working-directory: examples/05-using-a-database 47 47 48 - - name: "Example: 6-serving-static-assets" 48 + - name: "Example: 06-serving-static-assets" 49 49 run: gleam test 50 - working-directory: examples/6-serving-static-assets 50 + working-directory: examples/06-serving-static-assets 51 51 52 - - name: "Example: 7-logging" 52 + - name: "Example: 07-logging" 53 53 run: gleam test 54 - working-directory: examples/7-logging 54 + working-directory: examples/07-logging 55 55 56 - - name: "Example: 8-working-with-cookies" 56 + - name: "Example: 08-working-with-cookies" 57 57 run: gleam test 58 - working-directory: examples/8-working-with-cookies 58 + working-directory: examples/08-working-with-cookies 59 + 60 + - name: "Example: 09-configuring-default-responses" 61 + run: gleam test 62 + working-directory: examples/09-configuring-default-responses 63 + 64 + - name: "Example: 10-working-with-files" 65 + run: gleam test 66 + working-directory: examples/10-working-with-files"