Skip to content

adjust to recent binding partition changes (#61) #29

adjust to recent binding partition changes (#61)

adjust to recent binding partition changes (#61) #29

name: CassetteBaseCI
on:
push:
branches:
- master
pull_request:
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false # don't stop CI even when one of them fails
matrix:
include:
- version: '1' # current stable
os: ubuntu-latest
arch: x64
- version: '1.10' # lowerest version supported
os: ubuntu-latest
arch: x64
- version: '1.11-nightly' # next release
os: ubuntu-latest
arch: x64
- version: 'nightly' # dev
os: ubuntu-latest
arch: x64
- version: '1' # x86 ubuntu
os: ubuntu-latest
arch: x86
- version: '1' # x86 windows
os: windows-latest
arch: x86
- version: '1' # x64 windows
os: windows-latest
arch: x64
- version: '1' # x64 macOS
os: macos-latest
arch: x64
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- name: test CassetteBase
shell: julia --color=yes --project=. {0} # this is necessary for the next command to work on Windows
run: 'using Pkg; Pkg.activate("CassetteBase"); Pkg.instantiate(); Pkg.test(coverage=true)'
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v5
with:
file: ./lcov.info