Skip to content

Develop

Develop #264

Workflow file for this run

# Workflow based on: https://github.com/julia-actions/julia-runtest
# and https://github.com/davidanthoff/StringBuilders.jl/blob/master/.github/workflows/jlpkgbutler-ci-pr-workflow.yml
name: CI
on: [push, pull_request]
jobs:
test:
name: Tests ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- '1.10'
os:
- ubuntu-latest
arch:
- x64
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
# - uses: julia-actions/julia-runtest@v1
- run: julia --project=. --color=yes --check-bounds=yes test/seq/runtests.jl
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v5
with:
flags: unittests
verbose: true
token: ${{ secrets.CODECOV_TOKEN }}