Skip to content

ci: Refactor workflows so that they are usable by forks #1756

ci: Refactor workflows so that they are usable by forks

ci: Refactor workflows so that they are usable by forks #1756

Workflow file for this run

# THIS
# IS
# DOCUMENTATION
name: CI
on:
pull_request:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions: {}
jobs:
changes:
runs-on: ubuntu-latest
outputs:
skore: ${{ steps.filter.outputs.skore }}
skore-ui: ${{ steps.filter.outputs.skore-ui }}
permissions:
pull-requests: read
steps:
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v3
id: filter
with:
filters: |
skore:
- 'skore/src/**'
- 'skore/tests/**'
- 'skore/pyproject.toml'
- 'skore/requirements*.txt'
- '.github/workflows/backend.yml'
skore-ui:
- 'skore-ui/**'
- '.github/workflows/frontend.yml'
lint-all-files:
uses: ./.github/workflows/lint.yml
permissions:
contents: read
lint-and-test-backend:
needs: [lint-all-files, changes]
if: (github.event_name == 'push' && github.ref == 'refs/heads/main') || (github.event_name == 'pull_request' && needs.changes.outputs.skore == 'true')
uses: ./.github/workflows/backend.yml
permissions:
contents: read
lint-and-test-frontend:
needs: [lint-all-files, changes]
if: (github.event_name == 'push' && github.ref == 'refs/heads/main') || (github.event_name == 'pull_request' && needs.changes.outputs.skore-ui == 'true')
uses: ./.github/workflows/skore-ui.yml

Check failure on line 58 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

error parsing called workflow ".github/workflows/ci.yml" -> "./.github/workflows/skore-ui.yml" : failed to fetch workflow: workflow was not found.
permissions:
contents: read
ci-all-green:
needs:
- changes
- lint-all-files
- lint-and-test-backend
- lint-and-test-frontend
if: always()
runs-on: Ubuntu-latest
steps:
- shell: bash
run: |
[[ ${{ contains(needs.*.result, 'failure') }} = false ]]