diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-08-01 15:49:14 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-08-01 15:49:14 -0700 |
commit | 2d5d49856d8775e3bf9eb4ae8bd6965433a31230 (patch) | |
tree | 5923ccfa00bcc7495eef1ce2455c4f1674ae7139 /.github/workflows/main.yaml | |
parent | 9513bcd188c301e9bf412ddaff6fed4081eab002 (diff) | |
download | sncontinue-2d5d49856d8775e3bf9eb4ae8bd6965433a31230.tar.gz sncontinue-2d5d49856d8775e3bf9eb4ae8bd6965433a31230.tar.bz2 sncontinue-2d5d49856d8775e3bf9eb4ae8bd6965433a31230.zip |
main.yaml only setup python once
Diffstat (limited to '.github/workflows/main.yaml')
-rw-r--r-- | .github/workflows/main.yaml | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index a4151777..5d2c935f 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -10,7 +10,7 @@ jobs: pyinstaller: strategy: matrix: - os: [macos-latest, ubuntu-latest, windows-latest] + os: [macos-latest] runs-on: ${{ matrix.os }} @@ -21,16 +21,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v2 with: - python-version: "3.11" - - - 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 Dependencies run: | |