Update */Manifest.toml #334
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run tests | |
on: | |
push: | |
branches: | |
- master | |
tags: '*' | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# Edit ../../.mergify.yml when adding a new version. | |
julia-version: ['~1.5.0-rc1', '1.4', 'nightly'] | |
fail-fast: false | |
name: Test Julia ${{ matrix.julia-version }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup julia | |
uses: julia-actions/setup-julia@v1 | |
with: | |
version: ${{ matrix.julia-version }} | |
- run: julia -e 'using Pkg; pkg"add Run@0.1"' | |
- run: julia -e 'using Run; Run.prepare("test/environments/main")' | |
- run: julia -e 'using Run; Run.test(project="test/environments/main")' | |
- uses: julia-actions/julia-processcoverage@v1 | |
- uses: codecov/codecov-action@v1 | |
with: | |
file: ./lcov.info | |
flags: unittests | |
name: codecov-umbrella |