Skip to content

Commit

Permalink
GITBOOK-1: change request with no subject merged in GitBook
Browse files Browse the repository at this point in the history
  • Loading branch information
UgoBoulestreau authored and gitbook-bot committed Oct 11, 2023
1 parent eae8f85 commit 43e62c3
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 2 deletions.
23 changes: 23 additions & 0 deletions SUMMARY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Table of contents

* [Documentation](README.md)
* [README](src/README.md)
* [Table of contents](src/SUMMARY.md)
* [API](src/api/README.md)
* [Get started](src/api/get-started.md)
* [Back-End](src/back-end/README.md)
* [Architecture](src/back-end/architecture.md)
* [Data Base](src/data-base/README.md)
* [Architecture](src/data-base/architecture.md)
* [Devops + CI/CD](src/devops/README.md)
* [Architecture](src/devops/architecture.md)
* [Code format rules](src/devops/code-format-rules.md)
* [Github actions](src/devops/github-actions.md)
* [Font-End](src/font-end/README.md)
* [Architecture](src/font-end/architecture.md)
* [Global](src/global/README.md)
* [Architecture](src/global/architecture.md)
* [To start](src/to-start/README.md)
* [Makefile](src/to-start/makefile.md)
* [Tools](src/to-start/outils.md)
* [Setup](src/to-start/setup.md)
8 changes: 6 additions & 2 deletions src/devops/github-actions.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: >-
functionnal code.
---

# 🚧 Github actions
# Github actions

## <mark style="color:red;">Basics tests</mark>

Expand All @@ -14,7 +14,7 @@ The first test the code will pass is the compilation test. You should **always**

#### Unit-tests

The code should work as expected and every new feature should not break older ones. In order to maintain stability, every features must be tested with unit-tests. Unit-tests will be verified on main's branch merge request, and you may not merge without passing it. Be sure to update your tests.
The code should work as expected and every new feature should not break older ones. In order to maintain stability, every features must be tested with unit-tests. Unit-tests will be verified on main's branch merge request, and you may not merge without passing it. Be sure to update your tests.

#### Code format tests

Expand All @@ -23,3 +23,7 @@ The code should respect format rules, and should be as clean as possible (no war
#### Makefile

All these tests will be launched from a Makefile, with the _<mark style="color:green;">make basic-tests</mark>_ command. please refer to the [Makefile](../to-start/makefile.md) section for further information.

## Auto deployment

We automatically deploy our project with dockers containers on a remote Azure machine when a new release occurs on the main branch.

0 comments on commit 43e62c3

Please sign in to comment.