Skip to content

Bump codecov/codecov-action from 5.0.2 to 5.0.7 #106

Bump codecov/codecov-action from 5.0.2 to 5.0.7

Bump codecov/codecov-action from 5.0.2 to 5.0.7 #106

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@015f24e6818733317a2da2edd6290ab26238649a # v5.0.7
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: lcov.info