Skip to content

XPSinv CI

XPSinv CI #4

Workflow file for this run

name: XPSinv CI
on:
workflow_dispatch:
pull_request:
branches:
- main
- beta
paths:
- 'packages/XPSinv/src/**'
- 'packages/XPSinv/test/**'
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- '1.3' # Replace this with the minimum Julia version that your package supports. E.g. if your package requires Julia 1.5 or higher, change this to '1.5'.
- '1' # Leave this line unchanged. '1' will automatically expand to the latest stable 1.x release of Julia.
- 'nightly'
os:
- ubuntu-latest
arch:
- x64
steps:
- uses: actions/checkout@v3
- run: julia -e 'import Pkg; Pkg.activate("packages/XPSinv/"); Pkg.build("XPSinv"); Pkg.test("XPSinv"; coverage=true)'