Skip to content

Test installation on MacOS #5

Test installation on MacOS

Test installation on MacOS #5

Workflow file for this run

name: Test installation on macOS
on:
workflow_dispatch:
jobs:
Python 3.11:

Check failure on line 9 in .github/workflows/test_macos.yaml

View workflow run for this annotation

GitHub Actions / Test installation on macOS

Invalid workflow file

The workflow is not valid. .github/workflows/test_macos.yaml (Line: 9, Col: 3): The identifier 'Python 3.11' is invalid. IDs may only contain alphanumeric characters, '_', and '-'. IDs must start with a letter or '_' and and must be less than 100 characters.
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install micromamba
uses: mamba-org/setup-micromamba@v1
with:
environment-name: test
condarc: |
channels:
- uibcdf
- conda-forge
- defaults
channel_priority: strict
create-args: >-
python=3.11
- name: Info conda
shell: bash -l {0}
run: |
micromamba activate test
micromamba info
micromamba list
- name: Test installation
run: |
conda install pyunitwizard -c uibcdf
python -c "import pyunitwizard; print(pyunitwizard.__version__)"