Skip to content

PyPI

PyPI #12

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]
python: ['3.9', '3.13']
runs-on: ${{ matrix.os }}
steps:
- name: Install python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
check-latest: true
- name: Pip install fitbenchmarking
run: |
pip install fitbenchmarking[bumps,DFO,gradient-free,minuit,SAS,numdifftools,lmfit]