Skip to content

Remove deprecated internal ZstdCompressor constructor (#86) #133

Remove deprecated internal ZstdCompressor constructor (#86)

Remove deprecated internal ZstdCompressor constructor (#86) #133

Workflow file for this run

name: CI
on:
push:
branches:
- master
tags: ['*']
pull_request:
branches:
- master
concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: only if it is a pull request build.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
version:
- '1.6'
- '1'
- 'pre'
arch:
- 'default'
- 'x86'
exclude:
- os: macos-latest
arch: 'x86'
- os: macos-latest
version: '1.6'
steps:
- uses: actions/checkout@v5
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: lcov.info