Skip to content

Commit

Permalink
Debugging #14
Browse files Browse the repository at this point in the history
  • Loading branch information
davidcok committed Mar 3, 2023
1 parent b1d768d commit eeba40d
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/reusable-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,25 @@ name: Dafny Core verification (Reusable)
on:
workflow_call:
inputs:
dafny-version:
required: true
type: string
os:
required: true
type: string

jobs:
reusable_verification:
continue-on-error: true
strategy:
fail-fast: false
matrix:
# nightly-latest to catch anything that breaks these tests in current development
# 2/18/2023 version is the first that supports logging
# 3.11.0 supports new CLI but does not support logging
version: [nightly-2023-02-18-ef4f346, 3.11.0 ]
os: [ ubuntu-latest ]

runs-on: ${{ inputs.os }}

steps:
Expand All @@ -19,8 +31,8 @@ jobs:
- name: Install Dafny
uses: dafny-lang/setup-dafny-action@v1.6.0
with:
dafny-version: 3.11.0
##dafny-version: ${{ inputs.dafny_version }}
##dafny-version: 3.11.0
dafny-version: ${{ inputs.dafny_version }}

- name: Version information
run: |
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@ jobs:
verification:
uses: ./.github/workflows/reusable-tests.yml
with:
dafny-version: 3.11.0
os: ubuntu-latest

0 comments on commit eeba40d

Please sign in to comment.