From ca14772f2b4d0d40f951142aa5d4034860ce0751 Mon Sep 17 00:00:00 2001 From: KacperNapierski Date: Wed, 13 Sep 2023 17:27:07 +0200 Subject: [PATCH 01/37] github_CI_workflow --- .github/workflows/CI.yaml | 81 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 .github/workflows/CI.yaml diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml new file mode 100644 index 00000000..ece9a5e6 --- /dev/null +++ b/.github/workflows/CI.yaml @@ -0,0 +1,81 @@ +name: CI workflow + +on: + workflow_dispatch: + pull_request: + branches: + - main + paths: + - 'docker/**' + - 'graphenex/**' + + push: + branches: + - main + paths: + - 'docker/**' + - 'graphenex/**' + +#defaults: +# run: +# shell: bash + + +jobs: + setup_linux: + name: "Linux setup" + runs-on: ubuntu-latest + steps: + - name: checkout + uses: actions/checkout@v3 + + - name: update + run: | + sudo apt-get update + sudo apt-get upgrade + + - name: 'install dependencies' + run: | + sudo apt install python3-pip + python -m pip install --upgrade pip + + - name: 'install 'graphenex' + run: python3 -m pip install graphenex + + graphenex_actions_linux: + name: "Actions on graphenex linux" + runs-on: ubuntu-latest + needs: setup_linux + + steps: + - name: 'run graphenex' + run: graphenex + + setup_windows: + name: "Windows setup" + runs-on: windows-latest + steps: + - name: checkout + uses: actions/checkout@v3 + + - name: 'install python' + uses: actions/setup-python@v4 + with: + python-version: '3.10' + cache: 'pip' + + - name: 'update pip' + run: python -m pip install --upgrade pip + + - name: 'install 'graphenex' + run: python3 -m pip install graphenex + + graphenex_actions_windows: + name: "Actions on graphenex windows" + runs-on: windows-latest + needs: setup_windows + steps: + - name: 'run graphenex' + run: graphenex + + From c7814a7fe4917b8ff474d4d669998e13aec4dbc4 Mon Sep 17 00:00:00 2001 From: KacperNapierski Date: Wed, 13 Sep 2023 17:35:47 +0200 Subject: [PATCH 02/37] github_CI_workflow --- .github/workflows/CI.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index ece9a5e6..046a7c7b 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -38,8 +38,8 @@ jobs: run: | sudo apt install python3-pip python -m pip install --upgrade pip - - - name: 'install 'graphenex' + + - name: 'install graphenex' run: python3 -m pip install graphenex graphenex_actions_linux: @@ -67,7 +67,7 @@ jobs: - name: 'update pip' run: python -m pip install --upgrade pip - - name: 'install 'graphenex' + - name: 'install graphenex' run: python3 -m pip install graphenex graphenex_actions_windows: From 3879b62c2b10fd38454c79045f5479d3ca63d34a Mon Sep 17 00:00:00 2001 From: KacperNapierski Date: Wed, 13 Sep 2023 17:51:42 +0200 Subject: [PATCH 03/37] github_CI_workflows --- .github/workflows/CI.yaml | 54 ++++++++++++++++++++++++++++----------- 1 file changed, 39 insertions(+), 15 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 046a7c7b..8ba5380d 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -2,19 +2,19 @@ name: CI workflow on: workflow_dispatch: - pull_request: - branches: - - main - paths: - - 'docker/**' - - 'graphenex/**' - - push: - branches: - - main - paths: - - 'docker/**' - - 'graphenex/**' + pull_request: + branches: + - main + paths: + - 'docker/**' + - 'graphenex/**' + + push: + branches: + - main + paths: + - 'docker/**' + - 'graphenex/**' #defaults: # run: @@ -42,15 +42,28 @@ jobs: - name: 'install graphenex' run: python3 -m pip install graphenex + linter_linux: + name: "Linter check linux" + runs-on: ubuntu-latest + needs: setup_linux + steps: + - name: checkout + uses: actions/checkout@v3 + + - name: linter check + uses: ricardochaves/python-lint@v1.3.0 + graphenex_actions_linux: name: "Actions on graphenex linux" runs-on: ubuntu-latest - needs: setup_linux + needs: linter_linux steps: - name: 'run graphenex' run: graphenex + + setup_windows: name: "Windows setup" runs-on: windows-latest @@ -70,10 +83,21 @@ jobs: - name: 'install graphenex' run: python3 -m pip install graphenex + linter_windows: + name: "Linter check windows" + runs-on: windows-latest + needs: setup_windows + steps: + - name: checkout + uses: actions/checkout@v3 + + - name: linter check + uses: ricardochaves/python-lint@v1.3.0 + graphenex_actions_windows: name: "Actions on graphenex windows" runs-on: windows-latest - needs: setup_windows + needs: linter_windows steps: - name: 'run graphenex' run: graphenex From c97addbe699dde048cf3eab922b156ec281e0075 Mon Sep 17 00:00:00 2001 From: KacperNapierski Date: Wed, 13 Sep 2023 17:54:03 +0200 Subject: [PATCH 04/37] github_CI_workflows --- .github/workflows/CI.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 8ba5380d..ecf3c687 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -60,7 +60,7 @@ jobs: steps: - name: 'run graphenex' - run: graphenex + run: python -m graphenex @@ -100,6 +100,6 @@ jobs: needs: linter_windows steps: - name: 'run graphenex' - run: graphenex + run: python -m graphenex From c25319c665da7c4de37b3430e6c76aacc75478ad Mon Sep 17 00:00:00 2001 From: KacperNapierski Date: Wed, 13 Sep 2023 18:06:48 +0200 Subject: [PATCH 05/37] github_CI_workflows --- .github/workflows/CI.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index ecf3c687..01e06290 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -49,9 +49,9 @@ jobs: steps: - name: checkout uses: actions/checkout@v3 - - - name: linter check - uses: ricardochaves/python-lint@v1.3.0 + + - name: 'flake8 python linter' + uses: py-actions/flake8@v2 graphenex_actions_linux: name: "Actions on graphenex linux" @@ -91,8 +91,8 @@ jobs: - name: checkout uses: actions/checkout@v3 - - name: linter check - uses: ricardochaves/python-lint@v1.3.0 + - name: 'flake8 python linter' + uses: py-actions/flake8@v2 graphenex_actions_windows: name: "Actions on graphenex windows" From 1ce5865b7a51dea45f37ff7cc9abb0dc50499839 Mon Sep 17 00:00:00 2001 From: KacperNapierski Date: Wed, 13 Sep 2023 18:17:44 +0200 Subject: [PATCH 06/37] github_CI_workflows --- .github/workflows/CI.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 01e06290..31b907c7 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -56,7 +56,7 @@ jobs: graphenex_actions_linux: name: "Actions on graphenex linux" runs-on: ubuntu-latest - needs: linter_linux + needs: setup_linux steps: - name: 'run graphenex' @@ -97,7 +97,7 @@ jobs: graphenex_actions_windows: name: "Actions on graphenex windows" runs-on: windows-latest - needs: linter_windows + needs: setup_windows steps: - name: 'run graphenex' run: python -m graphenex From af14388aaa3fc8222d29a619fe8d21c886c2b50d Mon Sep 17 00:00:00 2001 From: KacperNapierski Date: Wed, 13 Sep 2023 18:33:50 +0200 Subject: [PATCH 07/37] github_CI_workflows --- .github/workflows/CI.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 31b907c7..d130f0d2 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -42,6 +42,9 @@ jobs: - name: 'install graphenex' run: python3 -m pip install graphenex + - name: 'run graphenex' + run: python -m graphenex + linter_linux: name: "Linter check linux" runs-on: ubuntu-latest @@ -82,6 +85,9 @@ jobs: - name: 'install graphenex' run: python3 -m pip install graphenex + + - name: 'run graphenex' + run: python -m graphenex linter_windows: name: "Linter check windows" From 615830bd643c9c25003672245a96febfc1216a92 Mon Sep 17 00:00:00 2001 From: KacperNapierski Date: Wed, 13 Sep 2023 18:41:12 +0200 Subject: [PATCH 08/37] github_CI_workflows --- .github/workflows/CI.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index d130f0d2..758104e6 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -85,9 +85,9 @@ jobs: - name: 'install graphenex' run: python3 -m pip install graphenex - + - name: 'run graphenex' - run: python -m graphenex + run: graphenex linter_windows: name: "Linter check windows" @@ -106,6 +106,6 @@ jobs: needs: setup_windows steps: - name: 'run graphenex' - run: python -m graphenex + run: graphenex From 984f7b10af156e1d7ab39d9c56ea842ee88ee4f8 Mon Sep 17 00:00:00 2001 From: KacperNapierski Date: Thu, 14 Sep 2023 15:29:07 +0200 Subject: [PATCH 09/37] github_CI_workflows --- .github/workflows/CI.yaml | 23 +++++++---------------- 1 file changed, 7 insertions(+), 16 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 758104e6..ee11284a 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -42,6 +42,9 @@ jobs: - name: 'install graphenex' run: python3 -m pip install graphenex + - name: "python import issue workaround" + run: sed -i '/Mapping/s/collections/collections.abc/' ~/.local/lib/python3.10/site-packages/prompt_toolkit/styles/from_dict.py + - name: 'run graphenex' run: python -m graphenex @@ -56,15 +59,6 @@ jobs: - name: 'flake8 python linter' uses: py-actions/flake8@v2 - graphenex_actions_linux: - name: "Actions on graphenex linux" - runs-on: ubuntu-latest - needs: setup_linux - - steps: - - name: 'run graphenex' - run: python -m graphenex - setup_windows: @@ -86,6 +80,10 @@ jobs: - name: 'install graphenex' run: python3 -m pip install graphenex + - name: 'python import issue workaround' + shell: pwsh + run: (Get-Content C:\Python310\Lib\site-packages\prompt_toolkit\styles\from_dict.py) -Replace 'from collections import Mapping', 'from collections.abc import Mapping' | Set-Content C:\Python310\Lib\site-packages\prompt_toolkit\styles\from_dict.py + - name: 'run graphenex' run: graphenex @@ -100,12 +98,5 @@ jobs: - name: 'flake8 python linter' uses: py-actions/flake8@v2 - graphenex_actions_windows: - name: "Actions on graphenex windows" - runs-on: windows-latest - needs: setup_windows - steps: - - name: 'run graphenex' - run: graphenex From e18df5a1e1bb411e7a5b92eb8ed9c7f9c2268b27 Mon Sep 17 00:00:00 2001 From: KacperNapierski Date: Thu, 14 Sep 2023 16:09:27 +0200 Subject: [PATCH 10/37] github_CI_workflows --- .github/workflows/CI.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index ee11284a..af618724 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -16,9 +16,6 @@ on: - 'docker/**' - 'graphenex/**' -#defaults: -# run: -# shell: bash jobs: @@ -71,7 +68,7 @@ jobs: - name: 'install python' uses: actions/setup-python@v4 with: - python-version: '3.10' + python-version: '3.10.0' cache: 'pip' - name: 'update pip' @@ -84,6 +81,9 @@ jobs: shell: pwsh run: (Get-Content C:\Python310\Lib\site-packages\prompt_toolkit\styles\from_dict.py) -Replace 'from collections import Mapping', 'from collections.abc import Mapping' | Set-Content C:\Python310\Lib\site-packages\prompt_toolkit\styles\from_dict.py + - name: "pip update" + run: puthon3 -m pip install --upgrade flask_socketio + - name: 'run graphenex' run: graphenex From 711dc706fa8f58f0d6a38200887faaf54a821f3b Mon Sep 17 00:00:00 2001 From: KacperNapierski Date: Tue, 19 Sep 2023 09:46:43 +0200 Subject: [PATCH 11/37] workflow --- .github/workflows/CI.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index af618724..07778a2a 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -79,7 +79,7 @@ jobs: - name: 'python import issue workaround' shell: pwsh - run: (Get-Content C:\Python310\Lib\site-packages\prompt_toolkit\styles\from_dict.py) -Replace 'from collections import Mapping', 'from collections.abc import Mapping' | Set-Content C:\Python310\Lib\site-packages\prompt_toolkit\styles\from_dict.py + run: (Get-Content C:\Python310\lib\site-packages\prompt_toolkit\styles\from_dict.py) -Replace 'from collections import Mapping', 'from collections.abc import Mapping' | Set-Content C:\Python310\Lib\site-packages\prompt_toolkit\styles\from_dict.py - name: "pip update" run: puthon3 -m pip install --upgrade flask_socketio From 84db0e02d1378bcfcf26f36ce4dffb6ea2b8d0d4 Mon Sep 17 00:00:00 2001 From: KacperNapierski Date: Tue, 19 Sep 2023 11:59:59 +0200 Subject: [PATCH 12/37] workflow --- .github/workflows/CI.yaml | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 07778a2a..991ca462 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -77,11 +77,27 @@ jobs: - name: 'install graphenex' run: python3 -m pip install graphenex + - name: 'testy' + shell: pwsh + run: Get-ChildItem + + - name: 'testy' + shell: pwsh + run: | + Set-Location -Path C:\Python310 + Get-ChildItem + + - name: 'testy' + shell: pwsh + run: | + Set-Location -Path C:\Python310\Lib + Get-ChildItem + - name: 'python import issue workaround' shell: pwsh - run: (Get-Content C:\Python310\lib\site-packages\prompt_toolkit\styles\from_dict.py) -Replace 'from collections import Mapping', 'from collections.abc import Mapping' | Set-Content C:\Python310\Lib\site-packages\prompt_toolkit\styles\from_dict.py + run: (Get-Content C:\Python310\Lib\site-packages\prompt_toolkit\styles\from_dict.py) -Replace 'from collections import Mapping', 'from collections.abc import Mapping' | Set-Content C:\Python310\Lib\site-packages\prompt_toolkit\styles\from_dict.py - - name: "pip update" + - name: "pip update flask_socketio" run: puthon3 -m pip install --upgrade flask_socketio - name: 'run graphenex' From 4a3c916092e68bbc1ae3e6b61f5b8940572fc8ad Mon Sep 17 00:00:00 2001 From: KacperNapierski Date: Tue, 19 Sep 2023 12:07:25 +0200 Subject: [PATCH 13/37] workflow --- .github/workflows/CI.yaml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 991ca462..11efcbaa 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -79,18 +79,21 @@ jobs: - name: 'testy' shell: pwsh - run: Get-ChildItem + run: | + Set-Location -Path D:\a\grapheneX\grapheneX\graphenex + Get-ChildItem + - name: 'testy' shell: pwsh run: | - Set-Location -Path C:\Python310 + Set-Location -Path C:\ Get-ChildItem - name: 'testy' shell: pwsh run: | - Set-Location -Path C:\Python310\Lib + Set-Location -Path C:\hostedtoolcache\windows\python\3.10.0 Get-ChildItem - name: 'python import issue workaround' From 418624f44581f8165cad1042b91827ef72270b2a Mon Sep 17 00:00:00 2001 From: KacperNapierski Date: Tue, 19 Sep 2023 12:14:28 +0200 Subject: [PATCH 14/37] workflow --- .github/workflows/CI.yaml | 38 +++++++++++++++++++++++++++++++++++++- 1 file changed, 37 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 11efcbaa..d68fd01a 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -93,7 +93,43 @@ jobs: - name: 'testy' shell: pwsh run: | - Set-Location -Path C:\hostedtoolcache\windows\python\3.10.0 + Set-Location -Path C:\data + Get-ChildItem + + - name: 'testy' + shell: pwsh + run: | + Set-Location -Path C:\Modules + Get-ChildItem + + - name: 'testy' + shell: pwsh + run: | + Set-Location -Path C:\Packages + Get-ChildItem + + - name: 'testy' + shell: pwsh + run: | + Set-Location -Path C:\rtools43 + Get-ChildItem + + - name: 'testy' + shell: pwsh + run: | + Set-Location -Path C:\tools + Get-ChildItem + + - name: 'testy' + shell: pwsh + run: | + Set-Location -Path C:\vcpkg + Get-ChildItem + + - name: 'testy' + shell: pwsh + run: | + Set-Location -Path C:\hostedtoolcache\windows\python\ Get-ChildItem - name: 'python import issue workaround' From 6ce58e9b0084924f4a3f4e8387f26db30e1eb3f5 Mon Sep 17 00:00:00 2001 From: KacperNapierski Date: Tue, 19 Sep 2023 12:22:44 +0200 Subject: [PATCH 15/37] workflow --- .github/workflows/CI.yaml | 43 +++++++++++++++++++++++++++++++++------ 1 file changed, 37 insertions(+), 6 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index d68fd01a..00c6d0aa 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -93,33 +93,52 @@ jobs: - name: 'testy' shell: pwsh run: | - Set-Location -Path C:\data + Set-Location -Path C:\data\instancename Get-ChildItem - name: 'testy' shell: pwsh run: | - Set-Location -Path C:\Modules + Set-Location -Path C:\Packages\Plugins Get-ChildItem - name: 'testy' shell: pwsh run: | - Set-Location -Path C:\Packages + Set-Location -Path C:\rtools43 Get-ChildItem - name: 'testy' shell: pwsh run: | - Set-Location -Path C:\rtools43 + Set-Location -Path C:\rtools43\dev + Get-ChildItem + + - name: 'testy' + shell: pwsh + run: | + Set-Location -Path C:\rtools43\etc + Get-ChildItem + + - name: 'testy' + shell: pwsh + run: | + Set-Location -Path C:\rtools43\home + Get-ChildItem + + - name: 'testy' + shell: pwsh + run: | + Set-Location -Path C:\rtools43\opt Get-ChildItem - name: 'testy' shell: pwsh run: | - Set-Location -Path C:\tools + Set-Location -Path C:\rtools43\usr Get-ChildItem + - name: 'testy' shell: pwsh run: | @@ -129,7 +148,19 @@ jobs: - name: 'testy' shell: pwsh run: | - Set-Location -Path C:\hostedtoolcache\windows\python\ + Set-Location -Path C:\vcpkg\toolsrc + Get-ChildItem + + - name: 'testy' + shell: pwsh + run: | + Set-Location -Path C:\hostedtoolcache\windows\python\3.10.0 + Get-ChildItem + + - name: 'testy' + shell: pwsh + run: | + Set-Location -Path C:\hostedtoolcache\windows\python\3.10.11 Get-ChildItem - name: 'python import issue workaround' From 44545e76ac98a3d8393371b96c3e95ff83044be7 Mon Sep 17 00:00:00 2001 From: KacperNapierski Date: Tue, 19 Sep 2023 12:29:36 +0200 Subject: [PATCH 16/37] workflow --- .github/workflows/CI.yaml | 42 +++------------------------------------ 1 file changed, 3 insertions(+), 39 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 00c6d0aa..cd879f3f 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -90,48 +90,12 @@ jobs: Set-Location -Path C:\ Get-ChildItem - - name: 'testy' - shell: pwsh - run: | - Set-Location -Path C:\data\instancename - Get-ChildItem - - - name: 'testy' - shell: pwsh - run: | - Set-Location -Path C:\Packages\Plugins - Get-ChildItem - - name: 'testy' shell: pwsh run: | Set-Location -Path C:\rtools43 Get-ChildItem - - name: 'testy' - shell: pwsh - run: | - Set-Location -Path C:\rtools43\dev - Get-ChildItem - - - name: 'testy' - shell: pwsh - run: | - Set-Location -Path C:\rtools43\etc - Get-ChildItem - - - name: 'testy' - shell: pwsh - run: | - Set-Location -Path C:\rtools43\home - Get-ChildItem - - - name: 'testy' - shell: pwsh - run: | - Set-Location -Path C:\rtools43\opt - Get-ChildItem - - name: 'testy' shell: pwsh run: | @@ -148,19 +112,19 @@ jobs: - name: 'testy' shell: pwsh run: | - Set-Location -Path C:\vcpkg\toolsrc + Set-Location -Path C:\hostedtoolcache\windows\python\3.10.0\x64 Get-ChildItem - name: 'testy' shell: pwsh run: | - Set-Location -Path C:\hostedtoolcache\windows\python\3.10.0 + Set-Location -Path C:\hostedtoolcache\windows\python\3.10.0\x64\lib Get-ChildItem - name: 'testy' shell: pwsh run: | - Set-Location -Path C:\hostedtoolcache\windows\python\3.10.11 + Set-Location -Path C:\hostedtoolcache\windows\python\3.10.0\x64\lib\site-packages Get-ChildItem - name: 'python import issue workaround' From 88181b30732812c375443da23ac8311be9f0d67b Mon Sep 17 00:00:00 2001 From: KacperNapierski Date: Tue, 19 Sep 2023 12:34:34 +0200 Subject: [PATCH 17/37] workflow --- .github/workflows/CI.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index cd879f3f..efb1f00e 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -121,12 +121,24 @@ jobs: Set-Location -Path C:\hostedtoolcache\windows\python\3.10.0\x64\lib Get-ChildItem + - name: 'testy' + shell: pwsh + run: | + Set-Location -Path C:\hostedtoolcache\windows\python\3.10.0\x64\lib\collections + Get-ChildItem + - name: 'testy' shell: pwsh run: | Set-Location -Path C:\hostedtoolcache\windows\python\3.10.0\x64\lib\site-packages Get-ChildItem + - name: 'testy' + shell: pwsh + run: | + Set-Location -Path C:\hostedtoolcache\windows\python\3.10.0\x64\lib\site-packages\prompt_toolkit + Get-ChildItem + - name: 'python import issue workaround' shell: pwsh run: (Get-Content C:\Python310\Lib\site-packages\prompt_toolkit\styles\from_dict.py) -Replace 'from collections import Mapping', 'from collections.abc import Mapping' | Set-Content C:\Python310\Lib\site-packages\prompt_toolkit\styles\from_dict.py From dd0809529cf0fee97db1030d0490a3ee45e01f84 Mon Sep 17 00:00:00 2001 From: KacperNapierski Date: Tue, 19 Sep 2023 12:38:43 +0200 Subject: [PATCH 18/37] workflow --- .github/workflows/CI.yaml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index efb1f00e..75ce48ea 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -130,13 +130,7 @@ jobs: - name: 'testy' shell: pwsh run: | - Set-Location -Path C:\hostedtoolcache\windows\python\3.10.0\x64\lib\site-packages - Get-ChildItem - - - name: 'testy' - shell: pwsh - run: | - Set-Location -Path C:\hostedtoolcache\windows\python\3.10.0\x64\lib\site-packages\prompt_toolkit + Set-Location -Path C:\hostedtoolcache\windows\python\3.10.0\x64\lib\site-packages\prompt_toolkit\styles Get-ChildItem - name: 'python import issue workaround' From b0bb930a6a46953e2c8d7b0136c670809f160adc Mon Sep 17 00:00:00 2001 From: KacperNapierski Date: Tue, 19 Sep 2023 12:42:06 +0200 Subject: [PATCH 19/37] workflow --- .github/workflows/CI.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 75ce48ea..00bf7a6c 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -135,7 +135,7 @@ jobs: - name: 'python import issue workaround' shell: pwsh - run: (Get-Content C:\Python310\Lib\site-packages\prompt_toolkit\styles\from_dict.py) -Replace 'from collections import Mapping', 'from collections.abc import Mapping' | Set-Content C:\Python310\Lib\site-packages\prompt_toolkit\styles\from_dict.py + run: (Get-Content C:\hostedtoolcache\windows\python\3.10.0\x64\lib\site-packages\prompt_toolkit\styles\from_dict.py) -Replace 'from collections import Mapping', 'from collections.abc import Mapping' | Set-Content C:\hostedtoolcache\windows\python\3.10.0\x64\lib\site-packages\prompt_toolkit\styles\from_dict.py - name: "pip update flask_socketio" run: puthon3 -m pip install --upgrade flask_socketio From 2757cd4d18266c3c567bbfe1e11d4a16fd9c10ba Mon Sep 17 00:00:00 2001 From: KacperNapierski Date: Tue, 19 Sep 2023 12:45:38 +0200 Subject: [PATCH 20/37] workflow --- .github/workflows/CI.yaml | 58 +-------------------------------------- 1 file changed, 1 insertion(+), 57 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 00bf7a6c..ef97b589 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -77,68 +77,12 @@ jobs: - name: 'install graphenex' run: python3 -m pip install graphenex - - name: 'testy' - shell: pwsh - run: | - Set-Location -Path D:\a\grapheneX\grapheneX\graphenex - Get-ChildItem - - - - name: 'testy' - shell: pwsh - run: | - Set-Location -Path C:\ - Get-ChildItem - - - name: 'testy' - shell: pwsh - run: | - Set-Location -Path C:\rtools43 - Get-ChildItem - - - name: 'testy' - shell: pwsh - run: | - Set-Location -Path C:\rtools43\usr - Get-ChildItem - - - - name: 'testy' - shell: pwsh - run: | - Set-Location -Path C:\vcpkg - Get-ChildItem - - - name: 'testy' - shell: pwsh - run: | - Set-Location -Path C:\hostedtoolcache\windows\python\3.10.0\x64 - Get-ChildItem - - - name: 'testy' - shell: pwsh - run: | - Set-Location -Path C:\hostedtoolcache\windows\python\3.10.0\x64\lib - Get-ChildItem - - - name: 'testy' - shell: pwsh - run: | - Set-Location -Path C:\hostedtoolcache\windows\python\3.10.0\x64\lib\collections - Get-ChildItem - - - name: 'testy' - shell: pwsh - run: | - Set-Location -Path C:\hostedtoolcache\windows\python\3.10.0\x64\lib\site-packages\prompt_toolkit\styles - Get-ChildItem - - name: 'python import issue workaround' shell: pwsh run: (Get-Content C:\hostedtoolcache\windows\python\3.10.0\x64\lib\site-packages\prompt_toolkit\styles\from_dict.py) -Replace 'from collections import Mapping', 'from collections.abc import Mapping' | Set-Content C:\hostedtoolcache\windows\python\3.10.0\x64\lib\site-packages\prompt_toolkit\styles\from_dict.py - name: "pip update flask_socketio" - run: puthon3 -m pip install --upgrade flask_socketio + run: python3 -m pip install --upgrade flask_socketio - name: 'run graphenex' run: graphenex From 69b967d5dc461846bfce0315ab42c67b4641ff33 Mon Sep 17 00:00:00 2001 From: KacperNapierski Date: Tue, 19 Sep 2023 12:56:49 +0200 Subject: [PATCH 21/37] workflow --- .github/workflows/CI.yaml | 38 ++++++++++++++------------------------ 1 file changed, 14 insertions(+), 24 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index ef97b589..359278f3 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -17,11 +17,23 @@ on: - 'graphenex/**' - jobs: + + linter: + name: "Linter check" + runs-on: ubuntu-latest + steps: + - name: checkout + uses: actions/checkout@v3 + + - name: 'flake8 python linter' + uses: py-actions/flake8@v2 + + setup_linux: name: "Linux setup" runs-on: ubuntu-latest + needs: linter steps: - name: checkout uses: actions/checkout@v3 @@ -45,22 +57,11 @@ jobs: - name: 'run graphenex' run: python -m graphenex - linter_linux: - name: "Linter check linux" - runs-on: ubuntu-latest - needs: setup_linux - steps: - - name: checkout - uses: actions/checkout@v3 - - - name: 'flake8 python linter' - uses: py-actions/flake8@v2 - - setup_windows: name: "Windows setup" runs-on: windows-latest + needs: linter steps: - name: checkout uses: actions/checkout@v3 @@ -87,16 +88,5 @@ jobs: - name: 'run graphenex' run: graphenex - linter_windows: - name: "Linter check windows" - runs-on: windows-latest - needs: setup_windows - steps: - - name: checkout - uses: actions/checkout@v3 - - - name: 'flake8 python linter' - uses: py-actions/flake8@v2 - From 8ea01612c453457c1301c9925be80dd78bd16b43 Mon Sep 17 00:00:00 2001 From: KacperNapierski Date: Thu, 21 Sep 2023 14:32:29 +0200 Subject: [PATCH 22/37] poetry --- .github/workflows/CI.yaml | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 359278f3..cb3f1f30 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -1,4 +1,4 @@ -name: CI workflow +name: Continuous Integration on: workflow_dispatch: @@ -8,7 +8,6 @@ on: paths: - 'docker/**' - 'graphenex/**' - push: branches: - main @@ -33,23 +32,23 @@ jobs: setup_linux: name: "Linux setup" runs-on: ubuntu-latest - needs: linter +# needs: linter steps: - name: checkout uses: actions/checkout@v3 - - name: update - run: | - sudo apt-get update - sudo apt-get upgrade - - name: 'install dependencies' run: | - sudo apt install python3-pip - python -m pip install --upgrade pip + sudo apt-get update + sudo apt-get install -y \ + --no-install-recommends \ + --allow-unauthenticated python3-pip - name: 'install graphenex' - run: python3 -m pip install graphenex + run: | + git clone https://github.com/grapheneX/grapheneX.git + python3 -m pip install poetry + poetry install - name: "python import issue workaround" run: sed -i '/Mapping/s/collections/collections.abc/' ~/.local/lib/python3.10/site-packages/prompt_toolkit/styles/from_dict.py @@ -88,5 +87,3 @@ jobs: - name: 'run graphenex' run: graphenex - - From cc1195dd215df324da30a25be772e268d9f54275 Mon Sep 17 00:00:00 2001 From: KacperNapierski Date: Thu, 21 Sep 2023 14:39:31 +0200 Subject: [PATCH 23/37] poetry --- .github/workflows/CI.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index cb3f1f30..836b6fe5 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -54,7 +54,7 @@ jobs: run: sed -i '/Mapping/s/collections/collections.abc/' ~/.local/lib/python3.10/site-packages/prompt_toolkit/styles/from_dict.py - name: 'run graphenex' - run: python -m graphenex + run: poetry run grapheneX setup_windows: From a53e90ee276fc8f49521cf0d2041f024eda50c82 Mon Sep 17 00:00:00 2001 From: KacperNapierski Date: Thu, 21 Sep 2023 14:49:30 +0200 Subject: [PATCH 24/37] poetry --- .github/workflows/CI.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 836b6fe5..23ce15f9 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -50,6 +50,14 @@ jobs: python3 -m pip install poetry poetry install + - name: 'install graphenex' + run: | + ls -a + cd ~ + ls -a + cd .local + + - name: "python import issue workaround" run: sed -i '/Mapping/s/collections/collections.abc/' ~/.local/lib/python3.10/site-packages/prompt_toolkit/styles/from_dict.py From 2ca7b4561e40d1da02979743de7f782a5b64f725 Mon Sep 17 00:00:00 2001 From: KacperNapierski Date: Thu, 21 Sep 2023 14:55:14 +0200 Subject: [PATCH 25/37] poetry --- .github/workflows/CI.yaml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 23ce15f9..a91ea85d 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -50,13 +50,16 @@ jobs: python3 -m pip install poetry poetry install - - name: 'install graphenex' + - name: 'test' + run: ls -a + - name: 'test' run: | - ls -a cd ~ ls -a - cd .local - + - name: 'test' + run: | + cd ~/.local + ls -a - name: "python import issue workaround" run: sed -i '/Mapping/s/collections/collections.abc/' ~/.local/lib/python3.10/site-packages/prompt_toolkit/styles/from_dict.py From 82ac2b35698422c94a0cdd5f472748809f3160b2 Mon Sep 17 00:00:00 2001 From: KacperNapierski Date: Thu, 21 Sep 2023 14:59:16 +0200 Subject: [PATCH 26/37] poetry --- .github/workflows/CI.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index a91ea85d..18f2e93f 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -54,11 +54,11 @@ jobs: run: ls -a - name: 'test' run: | - cd ~ + cd ~/.local/lib ls -a - name: 'test' run: | - cd ~/.local + cd ~/.local/bin ls -a - name: "python import issue workaround" From 732edc7b42d25829ee84dc2cc86fe05e951575e7 Mon Sep 17 00:00:00 2001 From: KacperNapierski Date: Thu, 21 Sep 2023 15:03:02 +0200 Subject: [PATCH 27/37] poetry --- .github/workflows/CI.yaml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 18f2e93f..296c657e 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -54,13 +54,20 @@ jobs: run: ls -a - name: 'test' run: | - cd ~/.local/lib + cd ~/.local/lib/3.10 ls -a - name: 'test' run: | - cd ~/.local/bin + cd ~/.local/bin/poetry + ls -a + - name: 'test' + run: | + cd ~/.local/bin/pyproject-build + ls -a + - name: 'test' + run: | + cd ~/.local/bin/pkginfo ls -a - - name: "python import issue workaround" run: sed -i '/Mapping/s/collections/collections.abc/' ~/.local/lib/python3.10/site-packages/prompt_toolkit/styles/from_dict.py From c504bb28128d30936561931d07320a4c12107c1e Mon Sep 17 00:00:00 2001 From: KacperNapierski Date: Thu, 21 Sep 2023 15:05:21 +0200 Subject: [PATCH 28/37] poetry --- .github/workflows/CI.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 296c657e..5077a1f9 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -54,7 +54,7 @@ jobs: run: ls -a - name: 'test' run: | - cd ~/.local/lib/3.10 + cd ~/.local/lib/python3.10 ls -a - name: 'test' run: | From 647f04facec71288b1e4ee68c71193ed7e31ff22 Mon Sep 17 00:00:00 2001 From: KacperNapierski Date: Thu, 21 Sep 2023 15:09:40 +0200 Subject: [PATCH 29/37] poetry --- .github/workflows/CI.yaml | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 5077a1f9..dde3f12c 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -54,22 +54,10 @@ jobs: run: ls -a - name: 'test' run: | - cd ~/.local/lib/python3.10 + cd ~/.local/lib/python3.10/site-packages ls -a - - name: 'test' - run: | - cd ~/.local/bin/poetry - ls -a - - name: 'test' - run: | - cd ~/.local/bin/pyproject-build - ls -a - - name: 'test' - run: | - cd ~/.local/bin/pkginfo - ls -a - - name: "python import issue workaround" - run: sed -i '/Mapping/s/collections/collections.abc/' ~/.local/lib/python3.10/site-packages/prompt_toolkit/styles/from_dict.py + #- name: "python import issue workaround" + # run: sed -i '/Mapping/s/collections/collections.abc/' ~/.local/lib/python3.10/site-packages/prompt_toolkit/styles/from_dict.py - name: 'run graphenex' run: poetry run grapheneX From bd35f4c00c94b9210fe03d0fa4d476e8cc5a7777 Mon Sep 17 00:00:00 2001 From: KacperNapierski Date: Thu, 21 Sep 2023 15:19:03 +0200 Subject: [PATCH 30/37] poetry --- .github/workflows/CI.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index dde3f12c..68b27a39 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -56,9 +56,14 @@ jobs: run: | cd ~/.local/lib/python3.10/site-packages ls -a + - name: 'test' + run: | + cd /home/runner/.cache/pypoetry/virtualenvs/graphenex--sEiZHBC-py3.10/lib/python3.10/site-packages/prompt_toolkit/styles/ + cat from_dict.py #- name: "python import issue workaround" # run: sed -i '/Mapping/s/collections/collections.abc/' ~/.local/lib/python3.10/site-packages/prompt_toolkit/styles/from_dict.py - + - name: "python import issue workaround" + run: sed -i '/Mapping/s/collections/collections.abc/' /home/runner/.cache/pypoetry/virtualenvs/graphenex--sEiZHBC-py3.10/lib/python3.10/site-packages/prompt_toolkit/styles/from_dict.py - name: 'run graphenex' run: poetry run grapheneX From 48ba6eb50cebbf05c453819aaf348441079d3f64 Mon Sep 17 00:00:00 2001 From: KacperNapierski Date: Thu, 21 Sep 2023 15:29:48 +0200 Subject: [PATCH 31/37] poetry --- .github/workflows/CI.yaml | 35 +++++++++++++---------------------- 1 file changed, 13 insertions(+), 22 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 68b27a39..6e84d219 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -32,11 +32,11 @@ jobs: setup_linux: name: "Linux setup" runs-on: ubuntu-latest -# needs: linter + needs: linter steps: - name: checkout uses: actions/checkout@v3 - + - name: 'install dependencies' run: | sudo apt-get update @@ -48,22 +48,11 @@ jobs: run: | git clone https://github.com/grapheneX/grapheneX.git python3 -m pip install poetry - poetry install + poetry install - - name: 'test' - run: ls -a - - name: 'test' - run: | - cd ~/.local/lib/python3.10/site-packages - ls -a - - name: 'test' - run: | - cd /home/runner/.cache/pypoetry/virtualenvs/graphenex--sEiZHBC-py3.10/lib/python3.10/site-packages/prompt_toolkit/styles/ - cat from_dict.py - #- name: "python import issue workaround" - # run: sed -i '/Mapping/s/collections/collections.abc/' ~/.local/lib/python3.10/site-packages/prompt_toolkit/styles/from_dict.py - name: "python import issue workaround" run: sed -i '/Mapping/s/collections/collections.abc/' /home/runner/.cache/pypoetry/virtualenvs/graphenex--sEiZHBC-py3.10/lib/python3.10/site-packages/prompt_toolkit/styles/from_dict.py + - name: 'run graphenex' run: poetry run grapheneX @@ -86,15 +75,17 @@ jobs: run: python -m pip install --upgrade pip - name: 'install graphenex' - run: python3 -m pip install graphenex + run: | + python3 -m pip install poetry + poetry install - - name: 'python import issue workaround' - shell: pwsh - run: (Get-Content C:\hostedtoolcache\windows\python\3.10.0\x64\lib\site-packages\prompt_toolkit\styles\from_dict.py) -Replace 'from collections import Mapping', 'from collections.abc import Mapping' | Set-Content C:\hostedtoolcache\windows\python\3.10.0\x64\lib\site-packages\prompt_toolkit\styles\from_dict.py + #- name: 'python import issue workaround' + # shell: pwsh + # run: (Get-Content C:\hostedtoolcache\windows\python\3.10.0\x64\lib\site-packages\prompt_toolkit\styles\from_dict.py) -Replace 'from collections import Mapping', 'from collections.abc import Mapping' | Set-Content C:\hostedtoolcache\windows\python\3.10.0\x64\lib\site-packages\prompt_toolkit\styles\from_dict.py - - name: "pip update flask_socketio" - run: python3 -m pip install --upgrade flask_socketio + #- name: "pip update flask_socketio" + # run: python3 -m pip install --upgrade flask_socketio - name: 'run graphenex' - run: graphenex + run: poetry run grapheneX From 1e5f954c200636a8ecc184f0ac9010e11f7e4216 Mon Sep 17 00:00:00 2001 From: KacperNapierski Date: Thu, 21 Sep 2023 15:30:13 +0200 Subject: [PATCH 32/37] poetry --- .github/workflows/CI.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 6e84d219..53fedc3a 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -60,7 +60,7 @@ jobs: setup_windows: name: "Windows setup" runs-on: windows-latest - needs: linter + #needs: linter steps: - name: checkout uses: actions/checkout@v3 From b41f0a2e04d0e1355d2fc17bd9866b8c3ed6b0c6 Mon Sep 17 00:00:00 2001 From: KacperNapierski Date: Thu, 21 Sep 2023 15:37:32 +0200 Subject: [PATCH 33/37] poetry --- .github/workflows/CI.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 53fedc3a..9add4910 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -79,12 +79,12 @@ jobs: python3 -m pip install poetry poetry install - #- name: 'python import issue workaround' - # shell: pwsh - # run: (Get-Content C:\hostedtoolcache\windows\python\3.10.0\x64\lib\site-packages\prompt_toolkit\styles\from_dict.py) -Replace 'from collections import Mapping', 'from collections.abc import Mapping' | Set-Content C:\hostedtoolcache\windows\python\3.10.0\x64\lib\site-packages\prompt_toolkit\styles\from_dict.py + - name: 'python import issue workaround' + shell: pwsh + run: (Get-Content C:\Users\runneradmin\AppData\Local\pypoetry\Cache\virtualenvs\graphenex-6fD1lE0z-py3.10\lib\site-packages\prompt_toolkit\styles\from_dict.py) -Replace 'from collections import Mapping', 'from collections.abc import Mapping' | Set-Content C:\Users\runneradmin\AppData\Local\pypoetry\Cache\virtualenvs\graphenex-6fD1lE0z-py3.10\lib\site-packages\prompt_toolkit\styles\from_dict.py - #- name: "pip update flask_socketio" - # run: python3 -m pip install --upgrade flask_socketio + - name: "pip update flask_socketio" + run: python3 -m pip install --upgrade flask_socketio - name: 'run graphenex' run: poetry run grapheneX From 7f7b670f920dba659d42ee44a0420ad0952b5a53 Mon Sep 17 00:00:00 2001 From: KacperNapierski Date: Thu, 21 Sep 2023 15:43:54 +0200 Subject: [PATCH 34/37] poetry --- .github/workflows/CI.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 9add4910..a31c5f88 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -32,7 +32,7 @@ jobs: setup_linux: name: "Linux setup" runs-on: ubuntu-latest - needs: linter + #needs: linter steps: - name: checkout uses: actions/checkout@v3 @@ -46,7 +46,6 @@ jobs: - name: 'install graphenex' run: | - git clone https://github.com/grapheneX/grapheneX.git python3 -m pip install poetry poetry install From 348a5d8de36d8d2231956b9f50492461fc89f926 Mon Sep 17 00:00:00 2001 From: KacperNapierski Date: Thu, 21 Sep 2023 15:44:12 +0200 Subject: [PATCH 35/37] poetry --- .github/workflows/CI.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index a31c5f88..7a5417e5 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -17,7 +17,6 @@ on: jobs: - linter: name: "Linter check" runs-on: ubuntu-latest From 14afb3b1eb1ce64ba785820177ced8a8abf19c3b Mon Sep 17 00:00:00 2001 From: KacperNapierski <80033411+KacperNapierski@users.noreply.github.com> Date: Fri, 22 Sep 2023 15:29:46 +0200 Subject: [PATCH 36/37] Update .github/workflows/CI.yaml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Orhun Parmaksız --- .github/workflows/CI.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 7a5417e5..4356a03a 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -10,7 +10,7 @@ on: - 'graphenex/**' push: branches: - - main + - master paths: - 'docker/**' - 'graphenex/**' From 5a1285fae15a562af41d56dedd8c3a78adb961c2 Mon Sep 17 00:00:00 2001 From: KacperNapierski <80033411+KacperNapierski@users.noreply.github.com> Date: Fri, 22 Sep 2023 15:30:53 +0200 Subject: [PATCH 37/37] Update .github/workflows/CI.yaml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Orhun Parmaksız --- .github/workflows/CI.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 4356a03a..42c158aa 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -4,7 +4,7 @@ on: workflow_dispatch: pull_request: branches: - - main + - master paths: - 'docker/**' - 'graphenex/**'