🧚 A practical web framework for Gleam

Clearer names on CI

+18 -9
+18 -9
.github/workflows/ci.yml
··· 21 21 - run: gleam deps download 22 22 - run: gleam test 23 23 24 - - run: gleam test 24 + - name: "Example: 0-hello-world" 25 + run: gleam test 25 26 working-directory: examples/0-hello-world 26 27 27 - - run: gleam test 28 + - name: "Example: 1-routing" 29 + run: gleam test 28 30 working-directory: examples/1-routing 29 31 30 - - run: gleam test 32 + - name: "Example: 2-working-with-form-data" 33 + run: gleam test 31 34 working-directory: examples/2-working-with-form-data 32 35 33 - - run: gleam test 36 + - name: "Example: 3-working-with-json" 37 + run: gleam test 34 38 working-directory: examples/3-working-with-json 35 39 36 - - run: gleam test 40 + - name: "Example: 4-working-with-other-formats" 41 + run: gleam test 37 42 working-directory: examples/4-working-with-other-formats 38 43 39 - - run: gleam test 44 + - name: "Example: 5-using-a-database" 45 + run: gleam test 40 46 working-directory: examples/5-using-a-database 41 47 42 - - run: gleam test 48 + - name: "Example: 6-serving-static-assets" 49 + run: gleam test 43 50 working-directory: examples/6-serving-static-assets 44 51 45 - - run: gleam test 52 + - name: "Example: 7-logging" 53 + run: gleam test 46 54 working-directory: examples/7-logging 47 55 48 - - run: gleam test 56 + - name: "Example: 8-working-with-cookies" 57 + run: gleam test 49 58 working-directory: examples/8-working-with-cookies