Skip to content

Update README.md

Update README.md #13

Workflow file for this run

name: build-conda-package
on: [push, pull_request]
jobs:
example-1:
name: Ex1 (${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest", ]
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
conda-build-version: 24.7.1
python-version: ${{ matrix.python-version }}
- name: Conda info
shell: bash -el {0}
run: conda info
- name: where am I
shell: bash -el {0}
run: pwd
- name: Build
shell: bash -el {0}
run: conda build .