From cf5647f63ba48b2493a6420189bb51e1c97d1c0c Mon Sep 17 00:00:00 2001 From: Tom Pughe <147526382+TomPughe@users.noreply.github.com> Date: Mon, 17 Jun 2024 16:34:44 +0100 Subject: [PATCH] Update and rename first.yml to marketplace.yml use python sytax checker in workflow from marketplace --- .github/workflows/first.yml | 21 --------------------- .github/workflows/marketplace.yml | 13 +++++++++++++ 2 files changed, 13 insertions(+), 21 deletions(-) delete mode 100755 .github/workflows/first.yml create mode 100755 .github/workflows/marketplace.yml diff --git a/.github/workflows/first.yml b/.github/workflows/first.yml deleted file mode 100755 index 27569f5..0000000 --- a/.github/workflows/first.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: first - -on: push - -jobs: - job1: - name: First job - runs-on: ubuntu-latest - steps: - - name: Step one - uses: actions/checkout@v2 - - name: Step two - run: env | sort - job2: - name: Second job - runs-on: windows-latest - steps: - - name: Step one - uses: actions/checkout@v2 - - name: Step two - run: "Get-ChildItem Env: | Sort-Object Name" \ No newline at end of file diff --git a/.github/workflows/marketplace.yml b/.github/workflows/marketplace.yml new file mode 100755 index 0000000..f46154e --- /dev/null +++ b/.github/workflows/marketplace.yml @@ -0,0 +1,13 @@ +name: marketplace + +on: push + +jobs: + job1: + runs-on: ubuntu-latest + steps: + - name: Step one + uses: actions/checkout@v2 + - name: Python Syntax Checker + uses: cclauss/Find-Python-syntax-errors-action@v0.2.0 +