Update */Manifest.toml #1011
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: | |
julia-version: | |
- '1.7' | |
- '1.6' | |
envname: ["main"] | |
include: | |
- julia-version: '1.0' | |
envname: "jl10" | |
- julia-version: '1.8' | |
envname: "main_v2" | |
- julia-version: 'nightly' | |
envname: "main_v3" | |
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/${{ matrix.envname }}")' | |
- run: julia -e 'using Run; Run.test(project="test/environments/${{ matrix.envname }}")' | |
- uses: julia-actions/julia-processcoverage@v1 | |
- uses: codecov/codecov-action@v1 | |
with: | |
file: ./lcov.info | |
flags: Run.test | |
name: codecov-umbrella | |
# A job that succeeds if and only if all jobs in `test` succeed. | |
all-success: | |
if: always() && github.event.pull_request | |
needs: test | |
runs-on: ubuntu-latest | |
steps: | |
# https://github.com/tkf/merge-conclusions-action | |
- uses: tkf/merge-conclusions-action@v1 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |