Fix citation #220
Workflow file for this run
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 MULE and run all the tests with pytest | |
| name: Tests | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: [3.12] | |
| platform: | |
| - ubuntu-24.04 | |
| - macos-14 # macOS ARM (M1/M2/M3/M4) | |
| - macos-15-intel # macOS x86_64 | |
| runs-on: ${{ matrix.platform }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Test suite | |
| run: | | |
| # Use setup.sh to handle architecture detection automatically | |
| # Provide input to auto-select Yes for conda installation if needed | |
| source setup.sh <<< "1" | |
| echo | |
| echo "************************************" | |
| echo ---------------test----------------- | |
| echo "************************************" | |
| echo | |
| PYTEST_ADDOPTS=--color=yes HYPOTHESIS_PROFILE=travis-ci \ | |
| conda run -n MULE-3.12-10-24 python -m pytest -v |