Skip to content

Commit

Permalink
Install Yices before CI
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelbailo committed Jul 8, 2024
1 parent e83d5a2 commit b1447e3
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,24 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@master

- name: Setup z3
run: sudo apt-get -y install z3


- name: Setup Yices
run: sudo add-apt-repository ppa:sri-csl/formal-methods; sudo apt-get update; sudo apt-get install yices2

- name: Set up Julia latest version
uses: julia-actions/setup-julia@latest
- uses: julia-actions/cache@v2

- name: Run tests
uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
file: lcov.info # https://github.com/julia-actions/julia-processcoverage
file: lcov.info # https://github.com/julia-actions/julia-processcoverage

0 comments on commit b1447e3

Please sign in to comment.