Skip to content

Merge pull request #106 from aplavin/master #174

Merge pull request #106 from aplavin/master

Merge pull request #106 from aplavin/master #174

name: NoCompModules
on:

Check failure on line 2 in .github/workflows/RunTestsNoIncrementalPrecompile.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/RunTestsNoIncrementalPrecompile.yml

Invalid workflow file

You have an error in your yaml syntax on line 2
push:
branches:
- master
- pull_request
defaults:
run:
shell: bash
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
version:
- '1'
- 'nightly'
os:
- ubuntu-latest
arch:
- x64
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/julia-buildpkg@latest
- name: Run tests without incremental precompilation
run: julia --compiled-modules=no --project -e "using Pkg; Pkg.test()"