Skip to content

Bump codecov/codecov-action from 2 to 4 (#543) #1786

Bump codecov/codecov-action from 2 to 4 (#543)

Bump codecov/codecov-action from 2 to 4 (#543) #1786

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: only if it is a pull request build.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.group }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- '1'
- '1.6'
- 'lts'
os:
- ubuntu-latest
arch:
- x64
group:
- 'Transform'
- 'BaseKernels'
- 'Kernels'
- 'MultiOutput'
- 'Others'
steps:
- uses: actions/checkout@v4
- 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
with:
coverage: ${{ matrix.version == '1' && matrix.os == 'ubuntu-latest' }}
env:
GROUP: ${{ matrix.group }}
- uses: julia-actions/julia-processcoverage@v1
if: matrix.version == '1' && matrix.os == 'ubuntu-latest'
- name: Send coverage to CodeCov
if: matrix.version == '1' && matrix.os == 'ubuntu-latest'
uses: codecov/codecov-action@v5
with:
files: lcov.info
token: ${{ secrets.CODECOV_TOKEN }} # required
fail_ci_if_error: true