Skip to content

Conda different OS

Conda different OS #37

Workflow file for this run

name: "Conda different OS"
# Controls when the workflow will run
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
example-1:
name: Ex1 (${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest", "macos-latest"]
python-version: ["3.8","3.9", "3.10.12", "3.11"]
steps:
- uses: conda-incubator/setup-miniconda@v3
with:
activate-environment: pysoftk_env
python-version: 3.9
channels: conda-forge, anaconda
allow-softlinks: true
channel-priority: flexible
show-channel-urls: true
use-only-tar-bz2: true
- name: Checking conda
run: |
conda info
conda list
conda config --show-sources
conda config --show
- name: Installation xtb
run: |
conda install -c conda-forge xtb