diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-07-31 22:44:22 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-07-31 22:44:22 -0700 |
commit | 4d5c6eb0799e1a0c1af8ee8203e39c9213d1c366 (patch) | |
tree | 58fa355c3daeaf0ebf62841ac00fa1feb3475ce2 /.github | |
parent | 78ada9b463a41260ccf53bbdc08b396ab9783ee2 (diff) | |
download | sncontinue-4d5c6eb0799e1a0c1af8ee8203e39c9213d1c366.tar.gz sncontinue-4d5c6eb0799e1a0c1af8ee8203e39c9213d1c366.tar.bz2 sncontinue-4d5c6eb0799e1a0c1af8ee8203e39c9213d1c366.zip |
ci: :green_heart: ci download with pip, not poetry
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/main.yaml | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index edae444f..03113421 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -23,16 +23,18 @@ jobs: with: python-version: "3.8" - - name: Install Poetry - run: | - curl -sSL https://install.python-poetry.org | python3 - + - name: Setup Python + uses: actions/setup-python@v4 + with: + python-version: "3.8" + architecture: "x64" # optional x64 (default) or x86 + cache: "pip" + cache-dependency-path: | + **/requirements*.txt - - name: Install Python dependencies + - name: Install Dependencies run: | - cd continuedev - poetry install - - - run: pip install -r requirements.txt pyinstaller + pip install -r requirements.txt pyinstaller - run: pyinstaller run.py |