Skip to content

Commit

Permalink
Test GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
metab0t committed Jan 25, 2024
1 parent 4f6ba59 commit 2e913a7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

cache: 'pip'

- name: Install lessmsi
run: |
choco install lessmsi
Expand Down
4 changes: 2 additions & 2 deletions lib/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ auto test_mosek() -> void
MOSEKEnv env;
MOSEKModelMixin model(env);

auto N = 10;
auto N = 100;
std::vector<VariableIndex> x;
for (auto i = 0; i < N; i++)
{
Expand Down Expand Up @@ -285,6 +285,6 @@ auto test_mosek() -> void

auto main() -> int
{
test_copt();
test_mosek();
return 0;
}

0 comments on commit 2e913a7

Please sign in to comment.