Skip to content

Change nlpmodels.jl to use ConcreteStructs.jl #66

Change nlpmodels.jl to use ConcreteStructs.jl

Change nlpmodels.jl to use ConcreteStructs.jl #66

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
test:
name: ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version: ['1']
os: [ubuntu-latest]
arch: [x64]
steps:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- name: install
shell: julia --color=yes --project=. {0}
run: |
using Pkg
Pkg.instantiate()
- run: julia --color=yes --project=. test/runtests.jl