Skip to content

add Aqua and add compat entries in Project.toml #244

add Aqua and add compat entries in Project.toml

add Aqua and add compat entries in Project.toml #244

Workflow file for this run

name: Run tests
on:
pull_request:
push:
branches:
- master
tags: '*'
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
julia-version: ['1.0', '1.6', '1', 'nightly']
julia-arch: [x64, x86]
os: [ubuntu-latest, macOS-latest, windows-latest]
exclude:
- os: macOS-latest
julia-arch: x86
steps:
- name: Set git to use LF (Windows only)
if: matrix.os == 'windows-latest'
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- name: Fix TEMP issue (Windows only) # See https://github.com/actions/virtual-environments/issues/712
if: matrix.os == 'windows-latest'
run: |
echo "TMP=${USERPROFILE}\AppData\Local\Temp" >> ${GITHUB_ENV}
echo "TEMP=${USERPROFILE}\AppData\Local\Temp" >> ${GITHUB_ENV}
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.julia-version }}
- uses: julia-actions/julia-runtest@latest
env:
JULIA_NUM_THREADS: 2
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v3
with:
file: lcov.info