From ce0df57308ced4254291c9dbc0107d74740fa25c Mon Sep 17 00:00:00 2001 From: Chris Date: Thu, 28 Nov 2019 12:56:02 +0100 Subject: [PATCH] Remove linting stages Since Go is a compiled language, it does that implicitly during test/build --- .github/workflows/release.yml | 8 -------- .github/workflows/test.yml | 7 ------- README.md | 2 +- 3 files changed, 1 insertion(+), 16 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3e3c04d..188a994 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,13 +12,6 @@ env: REGISTRY_IMAGE: docker.io/appuio/image-cleanup jobs: - lint: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - #- name: Lint YAML files - # run: docker run --rm -v $(pwd):/data docker.io/cytopia/yamllint . - test: runs-on: ubuntu-latest steps: @@ -33,7 +26,6 @@ jobs: release: runs-on: ubuntu-latest needs: - - lint - test if: github.ref != 'refs/heads/master' steps: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c487235..b0b3801 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,13 +11,6 @@ on: types: [opened, reopened] jobs: - lint: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - #- name: Lint YAML files - # run: docker run --rm -v $(pwd):/data docker.io/cytopia/yamllint . - test: runs-on: ubuntu-latest steps: diff --git a/README.md b/README.md index d5987c9..c566695 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ go test ./... ``` ./dist/image-cleanup_linux_amd64/image-cleanup --help # or -docker run --rm -it appuio/image-cleanup:master +docker run --rm -it appuio/image-cleanup: ``` ## License