project: Introduces capstone as a new project to analyze #3683
Workflow file for this run
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: Python CI | |
on: | |
push: | |
branches: [ vara, vara-dev ] | |
pull_request: | |
branches: [ vara, vara-dev ] | |
merge_group: | |
branches: [ vara, vara-dev ] | |
env: | |
BB_TMP_DIR: $(pwd)/benchbuild/tmp | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python-version: ['3.9', '3.10', '3.11'] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- uses: ./.github/actions/dependenciesActions | |
- name: Run unittests | |
run: | | |
echo $BB_TMP_DIR | |
mkdir -p benchbuild | |
coverage run -p -m pytest varats varats-core tests | |
rm -rf benchbuild | |
- name: Combine Coverage | |
run: | | |
coverage combine -a --rcfile=.coveragerc | |
coverage xml | |
- name: Upload coverage report | |
uses: codecov/codecov-action@v3 | |
with: | |
file: ./coverage.xml |