Skip to content

Commit

Permalink
ci: wip conda
Browse files Browse the repository at this point in the history
  • Loading branch information
tvandera committed Jun 17, 2024
1 parent 14401e2 commit b1a55ae
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/conda.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build

on:
pull_request:
push:
branches:
- master

jobs:
conda-build:
name: Build Conda Package
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
python-version: 3.8
channels: conda-forge,spyder-ide
- run: |
conda info
conda list
conda config --show-sources
conda config --show

0 comments on commit b1a55ae

Please sign in to comment.