-
Notifications
You must be signed in to change notification settings - Fork 3
37 lines (33 loc) · 1 KB
/
conda.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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