Skip to content

Add initial unit tests and automated CI #1

Add initial unit tests and automated CI

Add initial unit tests and automated CI #1

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
test:
name: Julia ${{ 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'

Check failure on line 16 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 16, Col: 18): Unexpected value '1' .github/workflows/ci.yml (Line: 17, Col: 13): Unexpected value 'ubuntu-latest'
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")