Skip to content

Run tests without check bounds #23

Run tests without check bounds

Run tests without check bounds #23

Workflow file for this run

name: CI
on:
push:
branches:
- master
tags: '*'
pull_request:
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
version:
- '1.9'
os:
- ubuntu-latest
arch:
- x64
steps:
- uses: actions/checkout@v1
- uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- run: julia --project -e 'import Pkg; Pkg.test(coverage = true, julia_args=["--check-bounds=no"])'
# - uses: julia-actions/julia-runtest@latest
# with:
# test_args: 'julia_args=["--check-bounds=no"]'
- uses: julia-actions/julia-uploadcodecov@latest
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}