Skip to content

Commit

Permalink
Update build
Browse files Browse the repository at this point in the history
  • Loading branch information
wpreimes committed Oct 8, 2024
1 parent 4102a93 commit dc05f8e
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ jobs:
- name: Print environment infos
shell: bash -l {0}
run: |
ls -R tests/smos-test-data
conda info -a
which pip
which python
Expand All @@ -54,6 +55,11 @@ jobs:
mkdir -p artifacts
filename=env_py${{ matrix.python-version }}_${{ matrix.os }}.yml
conda env export --no-builds | grep -v "prefix" > artifacts/$filename
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: Artifacts-py${{ matrix.python-version }}-${{ matrix.os }}
path: artifacts/*
- name: Install base package and run tests
shell: bash -l {0}
run: |
Expand Down Expand Up @@ -81,11 +87,6 @@ jobs:
python setup.py sdist --dist-dir artifacts/dist
fi
ls artifacts/dist
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: Artifacts-py${{ matrix.python-version }}-${{ matrix.os }}
path: artifacts/*
coveralls:
name: Submit Coveralls 👚
needs: build
Expand Down

0 comments on commit dc05f8e

Please sign in to comment.