Fix workflow branch syntax (#90)

In a previous PR we used `branch` syntax to trigger the pipeline when a push on `main` was made. This was a mistake and `branches` is the correct syntax that achieves this.
This commit is contained in:
Eduard Filip
2024-12-18 14:35:57 +01:00
committed by GitHub
parent 06962f2427
commit 6483669c68
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
on:
push:
branch: [main]
branches: [main]
pull_request:
name: Lint

View File

@@ -1,6 +1,6 @@
on:
push:
branch: [main]
branches: [main]
pull_request:
name: Run acceptance tests