Added warnings section to synth_values_ion on computing estimates bel… #34
This file contains hidden or 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: CI | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| schedule: | |
| # Weekly on Sunday | |
| - cron: "0 1 * * 0" | |
| jobs: | |
| checks: | |
| name: Check Python ${{ matrix.python-version }} on ${{ matrix.runs-on }} | |
| runs-on: ${{ matrix.runs-on }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| runs-on: ["ubuntu-latest", "macos-latest", "windows-latest"] | |
| python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] | |
| include: | |
| - runs-on: ubuntu-22.04 | |
| python-version: 3.7 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install package | |
| run: | | |
| if [[ "${{ runner.os }}" == "Linux" && "${{ matrix.python-version }}" =~ ^3\.[9-9]|1[0-9] ]]; then | |
| python -m pip install .[full] | |
| else | |
| python -m pip install . | |
| fi | |
| shell: bash | |
| # Tests are not ready to run in CI yet, so just do a basic import test | |
| - name: Test import | |
| run: python -c "import chaosmagpy" |