Skip to content

Commit 0af2615

Browse files
committed
fix ci
1 parent c4e4e4c commit 0af2615

File tree

2 files changed

+5
-12
lines changed

2 files changed

+5
-12
lines changed

.github/workflows/CI.yml

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -53,17 +53,10 @@ jobs:
5353
${{ runner.os }}-
5454
- uses: julia-actions/julia-buildpkg@v1
5555
- uses: julia-actions/julia-runtest@v1
56-
57-
finish:
58-
needs: [pre_job, test]
59-
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
60-
name: Code coverage
61-
runs-on: ubuntu-latest
62-
steps:
63-
- uses: julia-actions/julia-processcoverage@v1
64-
- uses: codecov/codecov-action@v1
65-
with:
66-
file: lcov.info
56+
- uses: julia-actions/julia-processcoverage@v1
57+
- uses: codecov/codecov-action@v1
58+
with:
59+
file: lcov.info
6760

6861
docs:
6962
name: Documentation

examples/IndependentSet.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ single_solution = max_config.c.data
121121
show_graph(graph; locs=locations, vertex_colors=
122122
[iszero(single_solution[i]) ? "white" : "red" for i=1:nv(graph)])
123123

124-
# ##### Enumerate all solutions best several solutions
124+
# ##### Enumerate all solutions and best several solutions
125125
# We can use bounded or unbounded [`ConfigsMax`](@ref) to find all solutions with largest-K set sizes.
126126
# In most cases, the bounded (default) version is preferred because it can reduce the memory usage significantly.
127127
all_max_configs = solve(problem, ConfigsMax(; bounded=true))[]

0 commit comments

Comments
 (0)