Skip to content

Bump codecov/codecov-action from 5.3.1 to 5.4.0 (#40) #114

Bump codecov/codecov-action from 5.3.1 to 5.4.0 (#40)

Bump codecov/codecov-action from 5.3.1 to 5.4.0 (#40) #114

Workflow file for this run

name: CI
on:
push:
branches: [main]
tags: '*'
pull_request:
concurrency:
# Skip intermediate builds: always.
# Documenter and CI can be separate builds
group: ${{ github.head_ref }}.ci
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:
- '1.6'
- '1'
- 'nightly'
os:
- ubuntu-latest
arch:
- x64
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Julia Setup
uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- name: Cache
uses: julia-actions/cache@v2
- name: Build
uses: julia-actions/julia-buildpkg@v1
- name: Test
uses: julia-actions/julia-runtest@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Coverage Process
uses: julia-actions/julia-processcoverage@v1
- name: Coverage Upload
uses: codecov/codecov-action@0565863a31f2c772f9f0395002a31e3f06189574 # v5.4.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: lcov.info