Skip to content

Add pledgeinsize

Add pledgeinsize #66

Workflow file for this run

name: Downstream
on:
push:
branches: [master]
tags: [v*]
pull_request:
jobs:
test:
name: ${{ matrix.package }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
package:
# - "Arrow" # Disabled because the tests take over an hour to run
- "Avro"
- "BGEN"
- "HDF5"
- "JetReconstruction"
- "Parquet"
- "SquashFS"
- "Thrift"
steps:
- uses: actions/checkout@v5
- uses: julia-actions/setup-julia@v2
with:
version: 1
arch: x64
- uses: julia-actions/julia-buildpkg@latest
- name: Load this and run the downstream tests
env:
JULIA_NUM_THREADS: "1"
shell: julia --color=yes {0}
run: |
using Pkg
Pkg.Registry.update()
Pkg.activate(;temp=true)
# force it to use this PR's version of the package
Pkg.develop([
PackageSpec(path="."),
PackageSpec(name="${{ matrix.package }}"),
])
Pkg.update()
Pkg.test("${{ matrix.package }}")