Skip to content

Commit

Permalink
Merge branch 'master' into ts
Browse files Browse the repository at this point in the history
  • Loading branch information
akbarnes committed Oct 26, 2024
2 parents 0bdc39d + 500e2fd commit 1cb23fc
Show file tree
Hide file tree
Showing 5 changed files with 62 additions and 11 deletions.
8 changes: 0 additions & 8 deletions .codecov.yml

This file was deleted.

33 changes: 33 additions & 0 deletions .github/workflows/TagBot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: TagBot
on:
issue_comment:
types:
- created
workflow_dispatch:
inputs:
lookback:
default: "3"
permissions:
actions: read
checks: read
contents: write
deployments: read
issues: read
discussions: read
packages: read
pages: read
pull-requests: read
repository-projects: read
security-events: read
statuses: read
jobs:
TagBot:
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
runs-on: ubuntu-latest
steps:
- uses: JuliaRegistries/TagBot@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
# Edit the following line to reflect the actual name of the GitHub Secret containing your private key
ssh: ${{ secrets.DOCUMENTER_KEY }}
# ssh: ${{ secrets.NAME_OF_MY_SSH_PRIVATE_KEY_SECRET }}
15 changes: 13 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ uuid = "c92a0612-66bb-11e9-0491-518d0d864356"
keywords = ["GMD", "EMP", "simulation", "analysis", "mitigation", "optimization"]
authors = ["Arthur Barnes <[email protected]>, Adam Mate <[email protected]>"]
repo = "https://github.com/lanl-ansi/PowerModelsGMD.jl"
version = "0.5.0"
version = "1.0.0"

[deps]
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
Expand All @@ -23,14 +23,25 @@ PowerModels = "c36e90e8-916a-50a6-bd94-075b64ef4655"
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"

# Ipopt, Juniper, MathOptInterface
[compat]
CSV = "~0.10"
Coverage = "~1.6"
DataFrames = "~1.7"
FFTW = "~1.8"
Ipopt = "~1.6"
Juniper = "~0.9"
MathOptInterface = "~1.31"
StatsBase = "~0.34"
LinearAlgebra = "~1.10, ~1.11"
SparseArrays = "~1.10, ~1.11"
InfrastructureModels = "~0.7"
JSON = "~0.21"
JuMP = "~1.9"
Memento = "~1.0, ~1.1, ~1.2, ~1.3, ~1.4"
PowerModels = "~0.19"
# PowerModelsRestoration = "~0.7"
julia = "~1.6, ~1.7, ~1.8, ~1.10"
julia = "~1.6, ~1.7, ~1.8, ~1.10, ~1.11"

[extras]
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Status:
[![CI](https://github.com/lanl-ansi/PowerModelsGMD.jl/workflows/CI/badge.svg)](https://github.com/lanl-ansi/PowerModelsGMD.jl/actions?query=workflow%3ACI)
[![codecov](https://codecov.io/gh/lanl-ansi/PowerModelsGMD.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/lanl-ansi/PowerModelsGMD.jl)
[![Documentation](https://github.com/lanl-ansi/PowerModelsGMD.jl/workflows/Documentation/badge.svg)](https://lanl-ansi.github.io/PowerModelsGMD.jl/stable/)
<!--- [![Documentation](https://github.com/lanl-ansi/PowerModelsGMD.jl/workflows/Documentation/badge.svg)](https://lanl-ansi.github.io/PowerModelsGMD.jl/stable/) --->
</p>

PowerModelsGMD (PMsGMD) is an open-source [Julia](https://julialang.org/) tool for evaluating the risks and mitigating the impacts of geomagnetic disturbances (GMDs) and E3 high-altitude electromagnetic pulse (HEMP) events on electrical power transmission networks.
Expand Down
15 changes: 15 additions & 0 deletions codecov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Global YAML [lower on hierarchy]
coverage:
round: down
precision: 5

# Repository YAML [higher on hierarchy]
coverage:
round: up
range: 0..10

# Used in Codecov after updating
coverage:
round: up
range: 0..10
precision: 5

0 comments on commit 1cb23fc

Please sign in to comment.