From 357983d22cb246e23637fd5b3340c44d5630879c Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Fri, 18 Feb 2022 02:13:55 +0000 Subject: [PATCH] fix ci --- .github/workflows/linux.yml | 2 +- databases/mongodb/README.md | 2 +- databases/redis/README.md | 2 +- templating/handlebars/README.md | 2 +- templating/sailfish/README.md | 2 +- templating/tera/README.md | 2 +- templating/tinytemplate/README.md | 2 +- templating/yarte/README.md | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index c8bb8dd1..66d32187 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -61,7 +61,7 @@ jobs: - name: run diesel migrations run: | cargo install diesel_cli - cd database_interactions/diesel + cd databases/diesel diesel migration run chmod a+rwx test.db diff --git a/databases/mongodb/README.md b/databases/mongodb/README.md index d42b9798..bf5452e2 100644 --- a/databases/mongodb/README.md +++ b/databases/mongodb/README.md @@ -21,4 +21,4 @@ MongoDB manual. ### Run the example -To execute the example code, run `cargo run` in the `database_interactions/mongodb` directory. +To execute the example code, run `cargo run` in the `databases/mongodb` directory. diff --git a/databases/redis/README.md b/databases/redis/README.md index 917e7cff..adf768a5 100644 --- a/databases/redis/README.md +++ b/databases/redis/README.md @@ -5,7 +5,7 @@ This project illustrates how to send multiple cache requests to Redis in bulk, a ## Start Server ```sh -cd database_interactions/redis +cd databases/redis cargo run ``` diff --git a/templating/handlebars/README.md b/templating/handlebars/README.md index 78bac4bd..d097a570 100644 --- a/templating/handlebars/README.md +++ b/templating/handlebars/README.md @@ -5,7 +5,7 @@ This is an example of how to use Actix Web with the [Handlebars](https://crates. ## Usage ```bash -cd template_engines/handlebars +cd templating/handlebars cargo run ``` diff --git a/templating/sailfish/README.md b/templating/sailfish/README.md index fe67ada4..25f29894 100644 --- a/templating/sailfish/README.md +++ b/templating/sailfish/README.md @@ -5,7 +5,7 @@ This is an example of how to use Actix Web with the [Sailfish](https://sailfish. ## Usage ```bash -cd template_engines/sailfish +cd templating/sailfish cargo run ``` diff --git a/templating/tera/README.md b/templating/tera/README.md index 8efe4c34..34c78961 100644 --- a/templating/tera/README.md +++ b/templating/tera/README.md @@ -7,7 +7,7 @@ Minimal example of using the template [tera](https://github.com/Keats/tera) that ### server ```bash -cd template_engines/tera +cd templating/tera cargo run (or ``cargo watch -x run``) # Started http server: 127.0.0.1:8080 ``` diff --git a/templating/tinytemplate/README.md b/templating/tinytemplate/README.md index 227e5f0e..e0c8e78a 100644 --- a/templating/tinytemplate/README.md +++ b/templating/tinytemplate/README.md @@ -7,7 +7,7 @@ See the documentation for the minimalist template engine [tiny_template](https:/ ### Server ```bash -cd template_engines/tinytemplate +cd templating/tinytemplate cargo run # (or ``cargo watch -x run``) # Started http server: 127.0.0.1:8080 ``` diff --git a/templating/yarte/README.md b/templating/yarte/README.md index 07c41174..08ea39fe 100644 --- a/templating/yarte/README.md +++ b/templating/yarte/README.md @@ -3,7 +3,7 @@ Minimal example of using template [yarte](https://github.com/botika/yarte) that displays a form. ```bash -cd template_engines/yarte +cd templating/yarte cargo test cargo run ```