Skip to content

Update README.md

Update README.md #17

Workflow file for this run

name: Julia CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Julia
uses: julia-actions/setup-julia@v1 # Use v1 since v2 is not recognized
with:
version: 1.7
- name: Install Project Dependencies
run: |
julia -e 'import Pkg; Pkg.add("Plots"); Pkg.add("FilePathsBase");Pkg.add("JSON"); Pkg.instantiate()'
- name: Run energy_community.jl script
run: julia src/energy_community.jl --num_nodes 6 --pv_nodes "1,2,3,4" --battery_nodes "2,3,5" --cooperative --cooperative_nodes "1,2,3,4"