Skip to content

Add Gambit mutation test to CI #3

Add Gambit mutation test to CI

Add Gambit mutation test to CI #3

Workflow file for this run

name: Gambit mutation testing
on:
workflow_dispatch:
pull_request:
jobs:
run-mutation-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup node/yarn
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'
cache-dependency-path: '**/yarn.lock'
- name: Install Gambit
run: |
wget -O gambit https://github.com/Certora/gambit/releases/download/v1.0.5/gambit-linux-v1.0.5
chmod +x gambit
sudo mv gambit /usr/local/bin/
- name: Verify Gambit Installation
run: gambit --help
- name: Run mutation tests
run: |
yarn test:mutation