Skip to content

just the build

just the build #1

Workflow file for this run

name: CI

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

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: test
on:
pull_request:
push:
workflow_dispatch:
inputs:
manualTrigger:
description: manually trigger a workflow
required: true
default: pr
type: choice
options:
- pr
- push
jobs:
test:
if: github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
call-workflow:
uses: .github/workflows/compile.yml
assemble:
if: github.event_name == 'push' || github.event.inputs.manualTrigger == 'push'
needs: [ compile ]
runs-on: ubuntu-latest
steps:
- name: Echo release
run: echo release