Skip to content

made progress on octree class; working on building the octree class #41

made progress on octree class; working on building the octree class

made progress on octree class; working on building the octree class #41

Workflow file for this run

name: coverage
on: [push, pull_request]
jobs:
coverage:
runs-on: ubuntu-latest
env:
HOOTSIM_PATH: "."
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Evaluate coverage
run: |
COVERAGE=$(make coverage | grep 'TOTAL COVERAGE' | grep -Eo '[0-9]+')
if [ "$COVERAGE" -gt 89 ]; then
echo "success"
else
echo "failure"
exit 1
fi