Skip to content

PyPI

PyPI #9

Workflow file for this run

name: 'PyPI'
on:
schedule:
- cron: '0 9 * * 1'
jobs:
package_install_check:
name: Package install check
if: github.event.repository.fork == false
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-13]
runs-on: ${{ matrix.os }}
steps:
- name: Install python
uses: actions/setup-python@v5
with:
python-version: '3.8'
check-latest: true
- name: Pip install fitbenchmarking
run: |
pip install fitbenchmarking[bumps,DFO,gradient-free,minuit,SAS,numdifftools,lmfit,nlopt]