Skip to content

Implement Line Search with Negative Curvature Detection for MINRES Based on Liu et al. (2022) #682

Implement Line Search with Negative Curvature Detection for MINRES Based on Liu et al. (2022)

Implement Line Search with Negative Curvature Detection for MINRES Based on Liu et al. (2022) #682

Workflow file for this run

name: Aqua
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@latest
with:
version: '1'
- name: Aqua.jl
run: |
PKG_SRC_PATH=`pwd`
PKG_SRC_NAME=`basename -s ".jl" $PKG_SRC_PATH`
julia --color=yes -e "using Pkg; Pkg.add(\"Aqua\"); Pkg.develop(path=\"$PKG_SRC_PATH\"); using Aqua, $PKG_SRC_NAME; Aqua.test_all($PKG_SRC_NAME)"