Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[doc] TEST DO NOT MERGE!! #1743

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/Build Documentation Preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ jobs:
python-version: 3.x
- run: pip install mkdocs-material
- run: mkdocs build
- run: echo "${{ github.event.number }}" >> ./site/.pr_number
- run: echo "${{ github.event.number }}" >> ./site/pr_number
- run: ls -la ./site
- name : Upload preview site artifact
uses : actions/upload-artifact@v4
with:
Expand All @@ -42,7 +43,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- run: mkdir pr_tmp
- run: echo "${{ github.event.number }}" >> ./pr_tmp/.pr_number
- run: echo "${{ github.event.number }}" >> ./pr_tmp/pr_number
- uses : actions/upload-artifact@v4
with:
name: closed_pr_number
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/Deploy Documentation Preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ jobs:
# Get PR number
- if: ${{ env.mode == 'deploy' }}
name: Get PR number (deploy)
run: echo "pr_number=$(cat ./artifacts/preview_site/.pr_number)" >> "$GITHUB_ENV"
run: echo "pr_number=$(cat ./artifacts/preview_site/pr_number)" >> "$GITHUB_ENV"

- if: ${{ env.mode == 'clean' }}
name: Get PR number (clean)
run: echo "pr_number=$(cat ./artifacts/closed_pr_number/.pr_number)" >> "$GITHUB_ENV"
run: echo "pr_number=$(cat ./artifacts/closed_pr_number/pr_number)" >> "$GITHUB_ENV"

# Run deployment
- if: ${{ env.mode == 'deploy' }}
Expand Down
9 changes: 9 additions & 0 deletions docs/plugin/composite.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
hdsjkdsaHsdjhksdlhsdak
hjksdahsdak


sdajdskaljdsA
SJDHAKSDAHL


DSAHJKSADH
2 changes: 1 addition & 1 deletion docs/plugin/config.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
In addition to the global Thunder config file (see [here](../introduction/config.md) for more details), each plugin has its own configuration file.
TestTestTest In addition to the global Thunder config file (see [here](../introduction/config.md) for more details), each plugin has its own configuration file.

This file contains some generic information about the plugin (name of the library, callsign, execution mode etc), but can easily be extended by developers to include their own options. Using this method for configuring plugins ensures consistency between plugins - there is therefore a single place to configure all plugins.

Expand Down
3 changes: 3 additions & 0 deletions docs/utils/singletons.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
## What is singleton and why it is used

Hallo Hallo

The Singleton pattern is a design pattern that restricts the instantiation of a class to a single instance. It ensures that only one instance of the class exists throughout the runtime of the program and provides a global point of access to that instance. In addition, they allow for lazy allocation and initialization, whereas global variables will always consume resources. Examples of using singletons can be found in ThunderClientLibraries repository.

## Singleton and SingletonType
Expand Down
Loading