Skip to content

Merge pull request #27 from vtjnash/patch-1 #88

Merge pull request #27 from vtjnash/patch-1

Merge pull request #27 from vtjnash/patch-1 #88

Workflow file for this run

name: "Deductive Tests"
on:
workflow_dispatch:
push:
paths-ignore:
- "**.md"
branches:
- main
pull_request:
paths-ignore:
- "**.md"
jobs:
test:
runs-on: ${{ matrix.os }}
timeout-minutes: 10
# continue-on-error: true
strategy:
matrix:
julia-version: ["1.7", "nightly"]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.julia-version }}
- uses: julia-actions/julia-runtest@v1
continue-on-error: ${{ matrix.julia-version == 'nightly' }}
- uses: julia-actions/julia-processcoverage@v1
- uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./lcov.info