Skip to content

DataFrames in project toml. #19

DataFrames in project toml.

DataFrames in project toml. #19

Workflow file for this run

name: Dev CI
on:
push:
branches:
# on all branches except main where full build will be run
- '*'
- '!main'
jobs:
linux_build:
name: Build linux ${{ matrix.python.name }}
runs-on: ubuntu-latest
strategy:
matrix:
version:
- '1' # Leave this line unchanged. '1' will automatically expand to the latest stable 1.x release of Julia.
os:
- ubuntu-latest
arch:
- x64
steps:
- name: Checkout sources
uses: actions/checkout@v3
with:
submodules: true
- uses: julia-actions/setup-julia@v2
with:
version: '1.10'
- name: Install requirements
run: |
julia install_requirements.jl
- name: Build and install Powsybl_jll
run: |
julia build_local.jl --verbose --deploy="local"
- name: Setup Powsybl_jll as dev package
run: |
eval "julia -e 'using Pkg; Pkg.REPLMode.PRINTED_REPL_WARNING[] = true; pkg\"dev Powsybl_jll\"'"
- name: Install Powsybl package
run: |
eval "julia -e 'using Pkg; Pkg.REPLMode.PRINTED_REPL_WARNING[] = true; pkg\"dev .\"'"
- name: Test
run: |
julia test/print_version.jl
- name: Test
run: |
julia test/print_network.jl