PyPI #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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] |