Make SFP a child of reactor. #3482
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: Coverage | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' | |
- name: Update package index | |
run: sudo apt-get update | |
- name: Install mpi libs | |
run: sudo apt-get -y install libopenmpi-dev | |
- name: Install Tox and any other packages | |
run: pip install tox | |
- name: Run Coverage Part 1 | |
run: tox -e cov1 || true | |
- name: Run Coverage Part 2 | |
run: tox -e cov2 | |
- name: Convert Coverage Results | |
env: | |
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} | |
run: | | |
pip install click==8.1.3 | |
pip install coverage==6.5.0 | |
pip install coveragepy-lcov==0.1.2 | |
coveragepy-lcov --data_file_path coverage_results.cov --output_file_path lcov.txt | |
- name: Publish to coveralls.io | |
uses: coverallsapp/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
path-to-lcov: lcov.txt | |