Skip to content

Commit

Permalink
Temp
Browse files Browse the repository at this point in the history
  • Loading branch information
joeflack4 committed Nov 22, 2023
1 parent a4ce251 commit cf48392
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions .github/workflows/bugfix-temp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,22 @@ on:
workflow_dispatch:
jobs:
refresh-db:
# TODO: Try
# runs-on: ubuntu-18.04
# runs-on: ubuntu-latest # not sure which is more current when resolving merge conflicts
runs-on: macos-latest
runs-on: ubuntu-latest # not sure which is more current when resolving merge conflicts
# runs-on: macos-latest
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v2
- name: Set up Python version
uses: actions/setup-python@v2
with:
python-version: '3.9.7' # Not sure why 3.9.7 here and 3.9 elsewhere. the .7 works on mac, but not on ubuntu
# todo: macOS(fail) local-mac-3.10.4(pass!)
# python-version: '3.10'
# todo: macOS(fail) ubuntu(n/a)
# python-version: '3.9.7' # Not sure why 3.9.7 here and 3.9 elsewhere. the .7 works on mac, but not on ubuntu
# todo: macOS(?) ubuntu(fail)
python-version: '3.9' # resolves to: 3.9.18

- name: Create and start virtual environment
run: |
Expand All @@ -27,9 +33,17 @@ jobs:
# pip install --upgrade setuptools
# pip install -r requirements.txt

# TODO: try variations of below
# todo: fail on various os/python versions
# - name: Install
# run: |
# python -m pip install --upgrade pip
# pip install --upgrade wheel
# pip install --upgrade setuptools
# pip install PyCG==0.0.7
- name: Install
run: |
python -m pip install --upgrade pip
pip install --upgrade wheel
pip install --upgrade setuptools
pip install PyCG==0.0.7
pip install PyCG==0.0.6

0 comments on commit cf48392

Please sign in to comment.