Skip to content

fix: rearrange so assert(false) not on return path #53

fix: rearrange so assert(false) not on return path

fix: rearrange so assert(false) not on return path #53

# workflow to build and test sea-dsa
name: CI
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the dev10 branch
push:
branches: dev10
pull_request:
branches: dev10
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "test"
test:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Check out repo
uses: actions/checkout@v2
with:
ref: dev10 # only checkout dev10
- name: Build seadsa and run tests
run: docker build -t seahorn/sea-dsa-builder:bionic-llvm10 -f docker/sea-dsa-builder.Dockerfile .