Skip to content

CI (pull_request) PR#27 #96

CI (pull_request) PR#27

CI (pull_request) PR#27 #96

Workflow file for this run

name: CI
run-name: >
CI (${{ github.event_name }})
${{ github.event_name == 'pull_request' && format('PR#{0}', github.event.number) || '' }}
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]
types: [opened, synchronize, reopened, labeled]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions: {}
jobs:
pre-commit:
permissions:
# for check-dist
contents: write
uses: ./.github/workflows/step_pre-commit.yaml

Check failure on line 25 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. In .github/workflows/ci.yaml (Line: 25, Col: 11): Error from called workflow LecrisUT/tmt-actions/.github/workflows/step_pre-commit.yaml@2b4fd31bfb713bdaeb68e6bda8496e7843ff5150 (Line: 77, Col: 13): Unexpected symbol: ''pull_request'. Located at position 22 within expression: github.event_name != 'pull_request
setup-tmt:
needs: [pre-commit]
uses: ./.github/workflows/step_test-setup-tmt.yaml
run-tmt:
needs: [setup-tmt]
uses: ./.github/workflows/step_test-run-tmt.yaml
pass:
name: ✅ Pass
needs: [pre-commit, setup-tmt, run-tmt]
runs-on: ubuntu-latest
steps:
- name: Check all CI jobs
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}
if: always()