Skip to content

First version of the package #1

First version of the package

First version of the package #1

Workflow file for this run

name: Unit Tests
on:
push:
branches: "main"
pull_request:
release:
concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: always.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Julia ${{ matrix.julia-version }} - ${{ matrix.os }} - ${{ matrix.julia-arch }}
timeout-minutes: 20
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest
julia_version:
- "nightly"
julia_arch:
- x64
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
arch: ${{ matrix.julia_arch }}
version: ${{ matrix.julia_version }}
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-runtest@v1

Check failure on line 40 in .github/workflows/UnitTests.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/UnitTests.yml

Invalid workflow file

You have an error in your yaml syntax on line 40
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: lcov.info
continue-on-error: true