We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69d1391 commit d49fa9eCopy full SHA for d49fa9e
.github/workflows/ci.yml
@@ -13,16 +13,9 @@ jobs:
13
- uses: julia-actions/setup-julia@latest
14
with:
15
version: '1'
16
- - uses: actions/checkout@v1
17
- - shell: bash
18
- env:
19
- WLSLICENSE: ${{ secrets.WLSLICENSE }}
20
- run: |
21
- mkdir -p /opt/gurobi
22
- echo "$WLSLICENSE" > /opt/gurobi/gurobi.lic
23
- - name: Install
24
- run: julia --project=. -e 'import Pkg; Pkg.instantiate()'
25
- - name: Test
+ - uses: actions/checkout@v4
+ - run: echo "${{ secrets.GUROBI_LICENSE }}" > ~/gurobi.lic
+ - run: julia --project=. -e 'import Pkg; Pkg.instantiate()'
+ - run: julia --project=. test/runtests.jl
26
env:
27
JULIA_CMD: julia
28
- run: julia --project=. test/runtests.jl
0 commit comments