Add utility functions for removing nodes from catalogue graph #155
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
# Build deployment artifact | |
name: "Catalogue graph: Run tests" | |
on: | |
push: | |
branches: | |
- main | |
paths: 'catalogue_graph/**' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.13' | |
- name: Setup CI | |
run: | | |
./catalogue_graph/scripts/ci-setup.sh | |
- name: Run tests & generate coverage report | |
run: | | |
./catalogue_graph/scripts/test.sh | |
- name: Get Cover | |
if : ${{ github.event_name == 'pull_request' }} | |
uses: orgoro/[email protected] | |
with: | |
coverageFile: ./catalogue_graph/coverage.xml | |
token: ${{ secrets.GITHUB_TOKEN }} |