debug workflow script 2 #6
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
| name: run self-tests on Windows | |
| on: | |
| # Runs on pushes targeting the default branch | |
| push: | |
| branches-ignore: | |
| - master | |
| - main | |
| # branches: ['develop'] | |
| # pull_request: | |
| # branches: ['main'] | |
| workflow_dispatch: # Allows running this workflow manually | |
| # Default to bash | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| build: | |
| strategy: | |
| #fail-fast: false | |
| matrix: | |
| # python-version: ["3.11", "3.12", "3.13"] | |
| python-version: ["3.13"] | |
| runs-on: 'windows-latest' | |
| steps: | |
| - name: Get conda | |
| #uses: conda-incubator/[email protected] | |
| uses: conda-incubator/setup-miniconda@030178870c779d9e5e1b4e563269f3aa69b04081 # v3.0.3 using hash for security | |
| with: | |
| activate-environment: build | |
| miniforge-version: latest | |
| python-version: ${{ matrix.python-version }} | |
| # configure conda | |
| - name: config python | |
| run: | | |
| # tailor the numpy version to match the GSAS-II binaries | |
| if [ "${{ matrix.env }}" == "py313" ]; then | |
| npver=2.2 | |
| elif [ "${{ matrix.env }}" == "py312" ]; then | |
| npver=2.2 | |
| elif [ "${{ matrix.env }}" == "py311" ]; then | |
| npver=1.26 | |
| fi | |
| mamba activate build | |
| conda install python=${{ matrix.python-version }} numpy={$npver} scipy requests pytest |