Skip to content

Bump c-blosc2 -> v2.13.2 #25

Bump c-blosc2 -> v2.13.2

Bump c-blosc2 -> v2.13.2 #25

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
release:
types:
- released
- prereleased
jobs:
build-and-test:
runs-on: ${{ matrix.os }}
matrix:

Check failure on line 16 in .github/workflows/CI.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/CI.yml (Line: 16, Col: 5): Unexpected value 'matrix'
os:
- macos-latest
- windows-latest
- ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: mamba-org/setup-micromamba@v1
with:
environment-file: environment.yml
enviornment-name: blosc2
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Build
run: cargo build --features use-system-blosc2
- name: Test
run: cargo test --features use-system-blosc2