From 935b321f48cea16e371aac82e5859a8c31e9097c Mon Sep 17 00:00:00 2001 From: Tomasz Kapela <92725383+tomasz-kapela@users.noreply.github.com> Date: Tue, 30 Nov 2021 15:19:53 +0100 Subject: [PATCH 1/9] Update helloworld.py --- src/helloworld.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/helloworld.py b/src/helloworld.py index 822558c..3bd97ff 100644 --- a/src/helloworld.py +++ b/src/helloworld.py @@ -1,2 +1,5 @@ def hello(): return "v1.0.0 world" + +def test(): + return 1.0 From 32440ec3704017e4d0e16fe4a502e1cc94a5f01d Mon Sep 17 00:00:00 2001 From: Tomasz Kapela <92725383+tomasz-kapela@users.noreply.github.com> Date: Tue, 30 Nov 2021 15:24:41 +0100 Subject: [PATCH 2/9] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index e524656..ab46675 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,7 @@ def hello(): return "v1.0.0 world" ``` + See [src/helloworld.py](./src/helloworld.py) as: From 0a4cdf01bcfe327ae85ec88c2234eb260523a6b0 Mon Sep 17 00:00:00 2001 From: Tomasz Kapela <92725383+tomasz-kapela@users.noreply.github.com> Date: Tue, 30 Nov 2021 15:25:32 +0100 Subject: [PATCH 3/9] Update helloworld.py --- src/helloworld.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/helloworld.py b/src/helloworld.py index 3bd97ff..0e485b0 100644 --- a/src/helloworld.py +++ b/src/helloworld.py @@ -3,3 +3,4 @@ def hello(): def test(): return 1.0 + From aef72f043225d4b904c26e64b08fb21be7ff4b96 Mon Sep 17 00:00:00 2001 From: Tomasz Kapela <92725383+tomasz-kapela@users.noreply.github.com> Date: Tue, 30 Nov 2021 15:27:01 +0100 Subject: [PATCH 4/9] Update helloworld.py --- src/helloworld.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/helloworld.py b/src/helloworld.py index 0e485b0..037f493 100644 --- a/src/helloworld.py +++ b/src/helloworld.py @@ -2,5 +2,6 @@ def hello(): return "v1.0.0 world" def test(): + a=2 return 1.0 From 67056003128ac4a9e1de5d9e0fdaae36c3f8c8eb Mon Sep 17 00:00:00 2001 From: Tomasz Kapela <92725383+tomasz-kapela@users.noreply.github.com> Date: Tue, 30 Nov 2021 15:27:48 +0100 Subject: [PATCH 5/9] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index ab46675..c4ceb0f 100644 --- a/README.md +++ b/README.md @@ -94,3 +94,5 @@ echo "hello" ## Formatting Notice that this action uses markdown parser/formatter, so, if you don't update any code, readme may be updated if formatter works. + +test From f1c3f63c0b9b38e030971c62725c23a7d4542c0a Mon Sep 17 00:00:00 2001 From: Tomasz Kapela <92725383+tomasz-kapela@users.noreply.github.com> Date: Tue, 30 Nov 2021 15:31:02 +0100 Subject: [PATCH 6/9] Update readme-test.yml --- .github/workflows/readme-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/readme-test.yml b/.github/workflows/readme-test.yml index c4d363e..2a5ab11 100644 --- a/.github/workflows/readme-test.yml +++ b/.github/workflows/readme-test.yml @@ -24,7 +24,7 @@ jobs: run: pytest test_src - name: embedding readme - uses: tokusumi/markdown-embed-code@v1.0.0 + uses: tomasz-kapela/markdown-embed-code@v1.0.0 with: markdown: "README.md" token: ${{ secrets.GITHUB_TOKEN }} From c0d9a2ab9be23a8c4032b99d7d6e45ae512a8255 Mon Sep 17 00:00:00 2001 From: Tomasz Kapela <92725383+tomasz-kapela@users.noreply.github.com> Date: Fri, 28 Jan 2022 13:41:21 +0100 Subject: [PATCH 7/9] Update readme-test.yml --- .github/workflows/readme-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/readme-test.yml b/.github/workflows/readme-test.yml index 2a5ab11..d134a1c 100644 --- a/.github/workflows/readme-test.yml +++ b/.github/workflows/readme-test.yml @@ -24,7 +24,7 @@ jobs: run: pytest test_src - name: embedding readme - uses: tomasz-kapela/markdown-embed-code@v1.0.0 + uses: tomasz-kapela/readme-code-testing@main with: markdown: "README.md" token: ${{ secrets.GITHUB_TOKEN }} From 1f97065f2eb8cc5e1b10973e892d2155bac52929 Mon Sep 17 00:00:00 2001 From: Tomasz Kapela <92725383+tomasz-kapela@users.noreply.github.com> Date: Fri, 28 Jan 2022 13:42:01 +0100 Subject: [PATCH 8/9] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c4ceb0f..de9ee43 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ The following code block has a file path `src/helloworld.py`: ```python:src/helloworld.py def hello(): return "v1.0.0 world" - +Tets ``` From 5c8eedb3dfcd31807d450b7f23dbd847d2d3cc68 Mon Sep 17 00:00:00 2001 From: Tomasz Kapela <92725383+tomasz-kapela@users.noreply.github.com> Date: Tue, 21 Feb 2023 11:38:03 +0100 Subject: [PATCH 9/9] Update README.md --- README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/README.md b/README.md index de9ee43..1c7f6da 100644 --- a/README.md +++ b/README.md @@ -15,9 +15,6 @@ This action could inspect your code, if you add a file path in code block as "\` The following code block has a file path `src/helloworld.py`: ```python:src/helloworld.py -def hello(): - return "v1.0.0 world" -Tets ```