Skip to content

Bump compat for "CSV" to "0.10" (skip 0.9 because of bad RYU compat) #200

Bump compat for "CSV" to "0.10" (skip 0.9 because of bad RYU compat)

Bump compat for "CSV" to "0.10" (skip 0.9 because of bad RYU compat) #200

Workflow file for this run

name: Run tests
on:
pull_request:
push:
branches:
- master
tags: '*'
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
julia-version: ['1.6', '1', 'nightly']
julia-arch: [x64]
os: [ubuntu-latest, macOS-latest, windows-latest]
exclude:
- os: macOS-latest
julia-arch: x86
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.julia-version }}
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
env:
PERSONAL_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/upload-artifact@v3
with:
name: ${{ runner.os }}_${{ matrix.julia-version }}_results.txt
path: results.txt
- uses: julia-actions/julia-processcoverage@v1