Skip to content

PR CICD

PR CICD #93

Workflow file for this run

name: PR CICD
on:
pull_request:
branches:
- master
types:
- opened
- edited
workflow_dispatch:
inputs:
branch:
description: 'Branch to test'
required: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up python
uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: Pip install package
run: |
python -m pip install --upgrade pip
pip install .
- name: Poetry install package
run: |
pip install poetry
poetry install
lint:
uses: ./.github/workflows/linting.yaml
test:
uses: ./.github/workflows/testing.yaml

Check failure on line 34 in .github/workflows/pull_request.yaml

View workflow run for this annotation

GitHub Actions / PR CICD

Invalid workflow file

The workflow is not valid. In .github/workflows/pull_request.yaml (Line: 34, Col: 11): Error from called workflow UCL-CCS/Nbed/.github/workflows/testing.yaml@982a4b7b09c7e99fa80a2a48afd3b167e4691dad (Line: 7, Col: 3): The workflow must contain at least one job with no dependencies.