Run Manticore tests #539
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Manticore tests | |
on: | |
push: | |
paths: | |
- ".github/workflows/manticore.yml" | |
- "program-analysis/manticore/**/*.py" | |
branches: | |
- master | |
pull_request: | |
paths: | |
- ".github/workflows/manticore.yml" | |
- "program-analysis/manticore/**/*.py" | |
schedule: | |
# run CI every day even if no PRs/merges occur | |
- cron: "0 12 * * *" | |
jobs: | |
tests: | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.8 | |
- name: Install dependencies | |
run: | | |
pip install solc-select | |
solc-select install 0.5.11 | |
solc-select use 0.5.11 | |
- name: Run Tests | |
run: | | |
bash program-analysis/manticore/scripts/gh_action_test.sh |