Skip to content

switch to ZipArchives #75

switch to ZipArchives

switch to ZipArchives #75

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- '1.8'
- '1'
# - 'nightly'
os:
- ubuntu-latest
- windows-latest
- macos-latest
arch:
- x64
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: actions/cache@v1
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: Develop packages
run: |
julia --project=test -e '
using Pkg
Pkg.develop([PackageSpec(path=pwd())])
Pkg.instantiate()'
- uses: julia-actions/julia-buildpkg@v1
with:
project: test
- name: Print package status
run: |
julia --project=test -e '
using InteractiveUtils
versioninfo()
using Pkg
Pkg.status(;mode=Pkg.PKGMODE_MANIFEST)'
- name: Run tests
run: |
cd test &&
julia --project --color=yes --depwarn=yes --warn-overwrite=yes --warn-scope=yes --check-bounds=yes --code-coverage=user runtests.jl
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v1
with:
file: lcov.info