diff options
| -rw-r--r-- | .github/workflows/main.yaml | 14 | 
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:  | 
