From 75ec9fffb254030a65c9a1348aa1b4230c991af4 Mon Sep 17 00:00:00 2001 From: Denis Palnitsky Date: Thu, 28 Apr 2022 15:47:10 +0200 Subject: [PATCH] Fix: workflow syntax --- .github/workflows/test.yaml | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 8680eae..8c7a2db 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -1,7 +1,4 @@ -# THIS FILE IS GENERATED AUTOMATICALLY BY RUNNING gen-workflow.sh -# DON'T CHANGE IT MANUALLY TO AVOID YOUR CHANGES BEING OVERWRITTEN -# USE workflow-template.yaml FOR MAKING CHANGES IN WORKFLOWS -name: build-common +name: test-and-lint on: push: @@ -31,10 +28,10 @@ jobs: lint: name: lint runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - with: - fetch-depth: 1 - - uses: dominikh/staticcheck-action@v1.1.0 - with: - version: "2022.1.1" \ No newline at end of file + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 1 + - uses: dominikh/staticcheck-action@v1.1.0 + with: + version: "2022.1.1" \ No newline at end of file