Skip to content

feat(algo/optim/lbfgsb): implement L-BFGS-B algorithm #374

feat(algo/optim/lbfgsb): implement L-BFGS-B algorithm

feat(algo/optim/lbfgsb): implement L-BFGS-B algorithm #374

Workflow file for this run

#
# Project NuriKit - Copyright 2023 SNU Compbio Lab.
# SPDX-License-Identifier: Apache-2.0
#
name: Test PR
on:
pull_request:
branches:
- main
- "release/**"
types:
- opened
- reopened
- synchronize
- ready_for_review
defaults:
run:
shell: bash
jobs:
check-want-test:
if: ${{ !github.event.pull_request.draft }}
uses: ./.github/workflows/_check-want-test.yaml
test-and-coverage:
needs: [check-want-test]
if: ${{ always() && needs.check-want-test.outputs.want-test == 'true' }}
uses: ./.github/workflows/_test-and-coverage.yaml
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true