Skip to content

Commit

Permalink
Remove linting stages
Browse files Browse the repository at this point in the history
Since Go is a compiled language, it does that implicitly
during test/build
  • Loading branch information
ccremer committed Nov 28, 2019
1 parent f28a86a commit ce0df57
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 16 deletions.
8 changes: 0 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -33,7 +26,6 @@ jobs:
release:
runs-on: ubuntu-latest
needs:
- lint
- test
if: github.ref != 'refs/heads/master'
steps:
Expand Down
7 changes: 0 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:<tag>
```

## License
Expand Down

0 comments on commit ce0df57

Please sign in to comment.