Simplify CI workflow branch checks

Removed file path filters on branch triggers in the CI workflow configuration. This allows the CI to run for any changes made in the main branch, ensuring broader test coverage and catching issues early.
This commit is contained in:
Winni Neessen 2024-10-26 15:37:07 +02:00
parent 9e6c1f0417
commit 12e9a0cb5d
Signed by: wneessen
GPG key ID: 385AC9889632126E

View file

@ -7,19 +7,9 @@ on:
push: push:
branches: branches:
- main - main
paths:
- '**.go'
- 'go.*'
- '.github/workflows/ci.yml'
- 'codecov.yml'
pull_request: pull_request:
branches: branches:
- main - main
paths:
- '**.go'
- 'go.*'
- '.github/workflows/codecov.yml'
- 'codecov.yml'
concurrency: concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }} group: ${{ github.workflow }}-${{ github.ref_name }}