summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-07-03 00:26:36 -0700
committerNate Sesti <sestinj@gmail.com>2023-07-03 00:26:36 -0700
commit127f7e5cd342c5cc988e8b5805f3d898953745f0 (patch)
treefdcd33f81e83845e890ea4e11217b01b0efb2b21
parent8fceb5b6e4379cf890ebae750a9f0877afd7e5cc (diff)
downloadsncontinue-127f7e5cd342c5cc988e8b5805f3d898953745f0.tar.gz
sncontinue-127f7e5cd342c5cc988e8b5805f3d898953745f0.tar.bz2
sncontinue-127f7e5cd342c5cc988e8b5805f3d898953745f0.zip
poetry in ci workflow
-rw-r--r--.github/workflows/main.yaml14
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml
index 30bfde73..5ad8cff3 100644
--- a/.github/workflows/main.yaml
+++ b/.github/workflows/main.yaml
@@ -13,6 +13,20 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
+ - name: Set up Python
+ uses: actions/setup-python@v2
+ with:
+ python-version: '3.8'
+
+ - name: Install Poetry
+ run: |
+ curl -sSL https://install.python-poetry.org | python3 -
+
+ - name: Install Python dependencies
+ run: |
+ cd continuedev
+ poetry install
+
- name: Cache node_modules
uses: actions/cache@v2
with: