Skip to content

Add determine-runner job to test.yml #28

Add determine-runner job to test.yml

Add determine-runner job to test.yml #28

Workflow file for this run

---
name: eden test suite
# yamllint disable-line rule:truthy
on:
push:
branches:
- "master"
paths-ignore:
- 'docs/**'
pull_request_review:
types: [submitted]
paths-ignore:
- 'docs/**'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test_suite_pr:
if: github.event.review.state == 'approved'
uses: ./eden/.github/workflows/test.yml

Check failure on line 22 in .github/workflows/eden.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/eden.yml

Invalid workflow file

invalid value workflow reference: no version specified
test_suite_master:
if: github.ref == 'refs/heads/master'
uses: ./eden/.github/workflows/test.l