Skip to content

Commit

Permalink
.github: adjust testing workflow triggers
Browse files Browse the repository at this point in the history
Run tests and linter on push, PR to master and manually.

Signed-off-by: Anna Shaleva <[email protected]>
  • Loading branch information
AnnaShaleva committed Feb 13, 2024
1 parent 85b9611 commit d1f5f66
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
name: Go
on: [push]
on:
push:
branches: [ master ]
pull_request:
branches:
- master
types: [opened, synchronize]
paths-ignore:
- '**/*.md'
workflow_dispatch:

jobs:
lint:
name: Lint
Expand Down

0 comments on commit d1f5f66

Please sign in to comment.