Skip to content

Bump python from 3.13.0b3 to 3.13.0rc2 #1095

Bump python from 3.13.0b3 to 3.13.0rc2

Bump python from 3.13.0b3 to 3.13.0rc2 #1095

name: Run on MacOS
on: [push]
#defaults:
# run:
# working-directory: wrdir
jobs:
#deploy:
# runs-on: windows-latest
# steps:
# - name: install readline
# run: python -m pip install readline
build:
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [macos-latest] #,windows-latest
python-version: [3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{matrix.python-version}}
uses: actions/setup-python@v4
with:
python-version: ${{matrix.python-version}}
# Optional - x64 or x86 architecture, defaults to x64
architecture: 'x64'
# You can test your matrix by printing the current Python version
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Create Workspace Folder
run: mkdir -p wrdir && mkdir -p wrdir/hiphp
- name: Copy Files & folders to Workspace Folder
run: cp -r hiphp/* wrdir/hiphp && cp main.py wrdir/main.py
- name: pip Upgrade
run: python -m pip install --upgrade pip
- name: Install requirements
run: pip install -r requirements.txt
- name: Test hiphp
run: python wrdir/main.py name: Run on MacOS

Check failure on line 38 in .github/workflows/python-app-on-mac.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/python-app-on-mac.yml

Invalid workflow file

You have an error in your yaml syntax on line 38
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest]
python-version: [3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v4
- name: Install gettext
run: |
brew install gettext
echo 'export PATH="/usr/local/opt/gettext/bin:$PATH"' >> $HOME/.bash_profile
echo 'export LDFLAGS="-L/usr/local/opt/gettext/lib"' >> $HOME/.bash_profile
echo 'export CPPFLAGS="-I/usr/local/opt/gettext/include"' >> $HOME/.bash_profile
source $HOME/.bash_profile
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Create Workspace Folder
run: mkdir -p wrdir && mkdir -p wrdir/hiphp
- name: Copy Files & folders to Workspace Folder
run: cp -r hiphp/* wrdir/hiphp && cp main.py wrdir/main.py
- name: pip Upgrade
run: python -m pip install --upgrade pip
- name: Install requirements
run: pip install -r requirements.txt
- name: Test hiphp
run: python wrdir/main.py