Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,11 @@ jobs:
version: ${{ matrix.julia-version }}
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v5
with:
files: lcov.info
token: ${{ secrets.CODECOV_TOKEN }}
# The org-wide token cannot imply a repository; the slug says
# which repo this upload is for.
slug: ${{ github.repository }}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ExaModelsAMPL.jl

Write an [ExaModels.jl](https://github.com/exanauts/ExaModels.jl) model to AMPL's
Write an [ExaModels.jl](https://github.com/madsuite-org/ExaModels.jl) model to AMPL's
`.nl` interchange format, so it can be consumed by any ASL-based tool (AMPL-compatible
solvers, [AmplNLReader.jl](https://github.com/JuliaSmoothOptimizers/AmplNLReader.jl), ...)
without building a JuMP model first.
Expand Down
10 changes: 10 additions & 0 deletions codecov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Coverage numbers without CI redness: the project/patch checks report their
# figures but never fail — a coverage drop is information, not a broken build.
coverage:
status:
project:
default:
informational: true
patch:
default:
informational: true
Loading