Skip to content

Commit

Permalink
updated github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
erikfrojdh committed Sep 2, 2024
1 parent 2100fc1 commit 76f6961
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions .github/workflows/conda-build.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,22 @@
name: build-conda-package
on: [push, pull_request]
jobs:
build:
runs-on: 'ubuntu-latest'
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@v2
# Builds the package using the standard configuration
- uses: cascode-labs/[email protected]
- uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
python-version: ${{ matrix.python-version }}
- name: Conda info
shell: bash -el {0}
run: conda info
- name: Conda list
shell: pwsh
run: conda list

0 comments on commit 76f6961

Please sign in to comment.