-
Notifications
You must be signed in to change notification settings - Fork 13
45 lines (45 loc) · 1.35 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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'
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")