Skip to content

changed architecture from default(=arm64) to x64 for all OS #27

changed architecture from default(=arm64) to x64 for all OS

changed architecture from default(=arm64) to x64 for all OS #27

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python package
on:
push:
branches: [ "main", "devel" ]
pull_request:
branches: [ "main", "devel" ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-13, macos-14, macos-latest ]
arch: x64

Check failure on line 20 in .github/workflows/python-package.yml

View workflow run for this annotation

GitHub Actions / Python package

Invalid workflow file

The workflow is not valid. .github/workflows/python-package.yml (Line: 20, Col: 15): Unexpected value 'x64'
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pybind11 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Install library
run: |
python -m pip install .
galapy-download-database
- name: Test with pytest
run: |
pytest tests/*.py