[WIP] #76 Add General Spherical joint #103
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
# Check if the tests covers all the code | |
name: Codecov(erage). | |
on: [pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Test python API | |
steps: | |
- uses: actions/checkout@master | |
- name: Install requirements | |
run: pip install -r requirements.txt | |
- name: Run tests and collect coverage | |
run: pytest --cov . | |
- name: Upload coverage reports to Codecov | |
# run: | | |
# # Replace `linux` below with the appropriate OS | |
# # Options are `alpine`, `linux`, `macos`, `windows` | |
# curl -Os https://uploader.codecov.io/latest/linux/codecov | |
# chmod +x codecov | |
# ./codecov -t ${CODECOV_TOKEN} | |
- uses: codecov/codecov-action@v3 | |
name: Upload coverage to Codecov | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |