Skip to content

Add initial unit tests and automated CI #3

Add initial unit tests and automated CI

Add initial unit tests and automated CI #3

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
test:
name: ${{ matrix.framework }} ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
framework: ['jump', 'nonconvex', 'nlpmodels', 'optimization']
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 }}
- uses: actions/cache@v3
env:
cache-name: cache-artifacts
with:
path: ~/.julia/artifacts
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
restore-keys: |
${{ runner.os }}-test-${{ env.cache-name }}-
${{ runner.os }}-test-
${{ runner.os }}-
- name: run
shell: julia --color=yes --project=. {0}
env:
FRAMEWORK: ${{ matrix.framework }}
run: |
using Pkg
Pkg.instantiate()
include(ENV["FRAMEWORK"] * ".jl")
solve_opf("data/pglib_opf_case5_pjm.m")
solve_opf("data/pglib_opf_case14_ieee.m")
solve_opf("data/pglib_opf_case24_ieee_rts.m")