Skip to content

Merge pull request #121 from ranocha/hr/dependabot #155

Merge pull request #121 from ranocha/hr/dependabot

Merge pull request #121 from ranocha/hr/dependabot #155

Workflow file for this run

name: CI
on:
push:
branches: "master"
tags: ["*"]
pull_request:
release:
jobs:
test:
name: Julia ${{ matrix.julia-version }} - ${{ matrix.os }} - ${{ matrix.julia-arch }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
julia-version:
- 'nightly'
- '1'
os:
- ubuntu-latest
- macos-latest
- windows-latest
julia-arch:
- x64
- x86
exclude:
- os: macos-latest
julia-arch: x86
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.julia-version }}
arch: ${{ matrix.julia-arch }}
- name: Cache artifacts
uses: actions/cache@v2
env:
cache-name: cache-artifacts
with:
path: |
~/.julia/artifacts
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
restore-keys: |
${{ runner.os }}-test-${{ env.cache-name }}-
${{ runner.os }}-test-
${{ runner.os }}-
- name: Build package
shell: julia --color=yes --project="" {0}
run: |
using Pkg
Pkg.develop(PackageSpec(path=pwd()))
Pkg.build("MKL"; verbose=true)
- uses: julia-actions/julia-runtest@latest