Skip to content

Bump codecov/codecov-action from 1 to 3 #78

Bump codecov/codecov-action from 1 to 3

Bump codecov/codecov-action from 1 to 3 #78

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
version:
- '1.4'
- 'nightly'
os:
- ubuntu-latest
- macOS-latest
- windows-latest
arch:
- x86
- x64
exclude:
- os: macOS-latest
arch: x86
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/julia-buildpkg@latest
- uses: julia-actions/julia-runtest@latest
- name: Emit coverage file
shell: bash
run: |
julia <<CODE
using Pkg
Pkg.add("Coverage")
using Coverage
LCOV.writefile("lcov.txt", process_folder())
CODE
- uses: codecov/codecov-action@v3
with:
file: ./lcov.txt