From d7c8bafdd82af8eee491e2f149f9b8ca7c49a40b Mon Sep 17 00:00:00 2001 From: Nicola Coretti Date: Mon, 5 Feb 2024 14:15:13 +0100 Subject: [PATCH] Fix syntax in workflows --- .github/workflows/ci-master.yml | 9 ++++++--- .github/workflows/ci-pr.yml | 5 ++++- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-master.yml b/.github/workflows/ci-master.yml index b6fda6b..24e7385 100644 --- a/.github/workflows/ci-master.yml +++ b/.github/workflows/ci-master.yml @@ -1,7 +1,7 @@ name: Continues Integration (Master) on: - wokflow_dispatch: + workflow_dispatch: pull_request: branches-ignore: - master @@ -9,7 +9,9 @@ on: - gh-pages schedule: # “At 00:00 on every 7th day-of-month from 1 through 31.” (https://crontab.guru) - - cron: "0 0 1/7 * *"jobs: + - cron: "0 0 1/7 * *" + +jobs: verify: runs-on: ubuntu-latest @@ -25,4 +27,5 @@ on: python-version: "3.11" - name: Run all checks - run: echo "Stub: This needs to call the checks in the future" + run: | + echo "Stub: This needs to call the checks in the future" diff --git a/.github/workflows/ci-pr.yml b/.github/workflows/ci-pr.yml index 97ddaca..a12f98d 100644 --- a/.github/workflows/ci-pr.yml +++ b/.github/workflows/ci-pr.yml @@ -7,6 +7,8 @@ on: - main - "Test-Automation" +jobs: + verify: runs-on: ubuntu-latest @@ -21,4 +23,5 @@ on: python-version: "3.11" - name: Run all checks - run: echo "Stub: This needs to call the checks in the future" + run: | + echo "Stub: This needs to call the checks in the future"