Skip to content

Commit

Permalink
ci: run ci on prs as well
Browse files Browse the repository at this point in the history
Signed-off-by: Matthew Gleich <git@mattglei.ch>
  • Loading branch information
gleich committed May 26, 2021
1 parent 9f4a15d commit ba6cb0d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: build

on: push
on:
- push
- pull_request

jobs:
go-build:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: lint

on: push
on:
- push
- pull_request

jobs:
golangci:
Expand Down Expand Up @@ -31,7 +33,7 @@ jobs:
- name: Linting docker/Dockerfile
uses: brpaz/hadolint-action@master
with:
dockerfile: 'Dockerfile'
dockerfile: "Dockerfile"
goreleaser:
runs-on: ubuntu-latest
steps:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: test

on: push
on:
- push
- pull_request

jobs:
test:
Expand Down

0 comments on commit ba6cb0d

Please sign in to comment.