ci: Refactor workflows so that they are usable by forks #1756
Workflow file for this run
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
# 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 GitHub Actions / .github/workflows/ci.ymlInvalid workflow file
|
||
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 ]] |