Skip to content

[Internals] Internalize integration routines #1229

[Internals] Internalize integration routines

[Internals] Internalize integration routines #1229

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
paths:
- 'src/**'
- 'ext/**'
- 'test/**'
- 'Project.toml'
- '.github/workflows/CI.yml'
push:
tags:
- '*'
branches:
- main
paths:
- 'src/**'
- 'ext/**'
- 'test/**'
- 'Project.toml'
- '.github/workflows/CI.yml'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- 'lts'
- '1'
os:
- ubuntu-latest
arch:
- x64
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:
files: lcov.info
token: ${{ secrets.CODECOV_TOKEN }}