Skip to content

Restructure of directories #37

Restructure of directories

Restructure of directories #37

Workflow file for this run

name: pull_request
run-name: Pull Request
on:
pull_request:
types: [opened, synchronize, reopened, closed]
# Prevent running concurrently
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
get_changed_files:
name: Get changed files
uses: ./.github/workflows/jobs/get_changed_files.yml

Check failure on line 18 in .github/workflows/pull_request.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pull_request.yml

Invalid workflow file

invalid value workflow reference: workflows must be defined at the top level of the .github/workflows/ directory
format:
name: Check format of python
needs: get_changed_files
uses: ./.github/workflows/jobs/format.yml
with:
files: ${{ needs.get_changed_files.outputs.changed_files }}
lint:
name: Lint python
needs: get_changed_files
uses: ./.github/workflows/jobs/lint.yml
with:
files: ${{ needs.get_changed_files.outputs.changed_files }}
run_tests:
name: Run tests
uses: ./.github/workflows/jobs/tests.yml