Skip to content

Bump codecov/codecov-action from 5.5.2 to 5.5.3 (#63) #204

Bump codecov/codecov-action from 5.5.2 to 5.5.3 (#63)

Bump codecov/codecov-action from 5.5.2 to 5.5.3 (#63) #204

Workflow file for this run

name: continuous-integration
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
on:
push:
branches:
- main
paths-ignore:
- 'LICENSE.md'
- 'README.md'
pull_request:
branches:
- main
- release-*
paths-ignore:
- 'LICENSE.md'
- 'README.md'
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
version:
- 'min'
- '1'
os:
- ubuntu-latest
- macos-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Julia Setup
uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
- uses: julia-actions/cache@v3
with:
cache-compiled: "true"
- 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
if: ${{ startsWith(matrix.os, 'ubuntu') && (matrix.version == '1') }}
- name: Coverage Upload
uses: codecov/codecov-action@1af58845a975a7985b0beb0cbe6fbbb71a41dbad # v5.5.3
if: ${{ startsWith(matrix.os, 'ubuntu') && (matrix.version == '1') }}
with:
files: lcov.info
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- name: Setup Node for Percy
if: ${{ matrix.version == '1' && matrix.os == 'ubuntu-latest' }}
uses: actions/setup-node@v6
with:
node-version: '14'
- name: Install Percy CI
if: ${{ matrix.version == '1' && matrix.os == 'ubuntu-latest' }}
run: npm install --save-dev @percy/cli
- name: Percy Upload
if: ${{ matrix.version == '1' && matrix.os == 'ubuntu-latest' }}
run: |
ls ./test/out/ # useful for debugging
npx percy upload ./test/out
env:
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }}