Update MAD-NG to 1.1.1 #75
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
| # This workflow will install Python dependencies, run tests on a variety Python versions | |
| # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python | |
| name: Test pymadng | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| defaults: | |
| run: | |
| shell: bash | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest] | |
| python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Get MAD Binaries | |
| run: | | |
| mkdir ./src/pymadng/bin | |
| curl https://madx.web.cern.ch/releases/madng/1.1/mad-linux-1.1.0 -o ./src/pymadng/bin/mad_Linux | |
| curl https://madx.web.cern.ch/releases/madng/1.1/mad-macos-1.1.0 -o ./src/pymadng/bin/mad_Darwin | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| python -m pip install -e .[tfs] | |
| - name: Test with python | |
| run: | | |
| chmod +x ./src/pymadng/bin/mad_Linux ./src/pymadng/bin/mad_Darwin | |
| python -m unittest tests/*.py |