Skip to content

LLT-5878: Xray tests on CI #181

LLT-5878: Xray tests on CI

LLT-5878: Xray tests on CI #181

Workflow file for this run

name: CI
on: [push, pull_request]
permissions: {}
jobs:
trigger:
if: |
github.event_name == 'push' ||
(
github.event_name == 'pull_request' &&
github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
)
runs-on: ubuntu-24.04
steps:
- name: CI Trigger
run: echo "Triggering CI"
linters:
needs: trigger
uses: ./.github/workflows/linters.yml
tests:
needs: trigger
uses: ./.github/workflows/tests.yml

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

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. In .github/workflows/ci.yml (Line: 24, Col: 11): Error from called workflow NordSecurity/NepTUN/.github/workflows/tests.yml@4bb8f2eb061c57e6242c5218bb51d0f0b034b391 (Line: 70, Col: 9): 'run' is already defined In .github/workflows/ci.yml (Line: 24, Col: 11): Error from called workflow NordSecurity/NepTUN/.github/workflows/tests.yml@4bb8f2eb061c57e6242c5218bb51d0f0b034b391 (Line: 71, Col: 9): 'run' is already defined
check-all-green:
needs:
- linters
- tests
runs-on: ubuntu-24.04
steps:
- name: Collect statuses from all jobs
uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2
with:
jobs: ${{ toJSON(needs) }}