diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-07-03 00:26:36 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-07-03 00:26:36 -0700 |
commit | 192ff8e267ff4d02bd209ebe66db7f6224a2b728 (patch) | |
tree | 348ad59b55f0200d5d40be3343384923ee8be62a /.github | |
parent | 1299e153b6a73a60058569a7e250dba8080e2a59 (diff) | |
download | sncontinue-192ff8e267ff4d02bd209ebe66db7f6224a2b728.tar.gz sncontinue-192ff8e267ff4d02bd209ebe66db7f6224a2b728.tar.bz2 sncontinue-192ff8e267ff4d02bd209ebe66db7f6224a2b728.zip |
poetry in ci workflow
Diffstat (limited to '.github')
-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: |