Skip to content

WIP: Change: Ci: following guidelines #6

WIP: Change: Ci: following guidelines

WIP: Change: Ci: following guidelines #6

Workflow file for this run

name: CI
on:
push:
branches: [ main]
tags: ["v*"]
pull_request:
workflow_dispatch:
repository_dispatch:
schedule:
# rebuild image every sunday
- cron: "0 0 * * 0"
jobs:
init:
uses: ./.github/workflows/init.yaml
build:
uses: ./.github/workflows/build.yml
linting:
uses: ./.github/workflows/ci.yml
container:
needs: [build, init]
env:
IS_LATEST_TAG: ${{needs.init.outputs.is_latest_tag}}
IS_VERSION_TAG: ${{needs.init.outputs.is_version_tag}}
uses: ./.github/workflows/push-container.yml

Check failure on line 26 in .github/workflows/control.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/control.yml (Line: 26, Col: 5): Unexpected value 'uses' .github/workflows/control.yml (Line: 22, Col: 5): Required property is missing: runs-on
# although it seems a bit odd, but that way we ensure
# that we test the latest greatest thing.
smoketests:
needs: [container, init]
uses: ./.github/workflows/smoketest.yaml