Revert "Create write_operating_reserve_price_revenue.jl (#611)" #206
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test-example | |
on: | |
push: | |
schedule: | |
- cron: 21 4 * * * # Run at 12:21am US Eastern time | |
jobs: | |
test: | |
strategy: | |
matrix: | |
branch: ["main", "develop"] | |
version: ["1.8", "1.9"] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ matrix.branch }} | |
- uses: julia-actions/[email protected] | |
- uses: julia-actions/setup-julia@latest | |
with: | |
version: ${{ matrix.version }} | |
- uses: julia-actions/julia-buildpkg@v1 | |
- name: Test an example case | |
run: | | |
julia --project=. Example_Systems/SmallNewEngland/Simple_Test_Case/Run.jl |