Skip to content

Commit

Permalink
remove ci report status, dont install ray[train] in ci since untested
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonBurns committed Apr 2, 2024
1 parent 70c4910 commit 3a3494a
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
python=${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install ".[dev,hopt,bmark,shap]"
python -m pip install ".[dev,bmark,shap]"
python -m pip install coverage pytest
- name: Run Tests
run: |
Expand All @@ -64,16 +64,6 @@ jobs:
run: |
coverage report -m
ci-report-status:
if: ${{ always() }}
name: report CI status
needs: [build-and-test]
runs-on: ubuntu-latest
steps:
- run: exit 1
# see https://stackoverflow.com/a/67532120/4907315
if: ${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') || contains(needs.*.result, 'skipped') }}

check-for-new-release:
runs-on: ubuntu-latest
needs: build-and-test
Expand All @@ -96,7 +86,7 @@ jobs:
pypi-package:
name: Build and publish Python distributions to PyPI
runs-on: ubuntu-latest
needs: [check-for-new-release, ci-report-status]
needs: check-for-new-release
if: ${{ needs.check-for-new-release.outputs.do_publish == 'true' && github.ref == 'refs/heads/main' && github.repository == 'JacksonBurns/fastprop'}}
steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 3a3494a

Please sign in to comment.