Skip to content

Fix failing tests due to CodecZlib issues #30

Fix failing tests due to CodecZlib issues

Fix failing tests due to CodecZlib issues #30

Workflow file for this run

name: CI
on:
push:
branches:
- master
tags: '*'
pull_request:
schedule:
# Run CI against `master` every Sunday
- cron: '0 0 * * 0'
env:
JULIA_NUM_THREADS: 4
GDCAUTILS_TESTING: true
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.version == 'nightly' }}
strategy:
matrix:
version:
- '1.5' # Oldest supported version
- '1' # Latest release
- 'nightly'
os:
- ubuntu-latest
- macOS-latest
# - windows-latest
arch:
- x64
# exclude:
# Remove some configurations from the build matrix to reduce CI time.
# See https://github.com/marketplace/actions/setup-julia-environment
# MacOS not available on x86
# - {os: 'macOS-latest', arch: 'x86'}
# - {os: 'windows-latest', arch: 'x86'}
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v4
with:
files: lcov.info