Skip to content

Switch to using a mosek.lic file in GitHub actions #301

Switch to using a mosek.lic file in GitHub actions

Switch to using a mosek.lic file in GitHub actions #301

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
types: [opened, synchronize, reopened]
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version: ['1.6', '1']
os: [ubuntu-latest]
arch: [x64]
steps:
- name: Install xmllint
run: sudo apt-get install -y curl
- uses: actions/checkout@v6
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v3
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
env:
MOSEKLM_LICENSE_FILE: ${{ secrets.MOSEK_LICENSE }}
with:
depwarn: error
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v4
with:
file: lcov.info
token: ${{ secrets.CODECOV_TOKEN }}