Skip to content

E2e pipeline with schedule #152

E2e pipeline with schedule

E2e pipeline with schedule #152

# 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 }}