Commit be68829a6baee15518291dbfd996cae84ad42b34

Peter Hutterer 2022-01-17T14:08:59

CI: always run the linux workflow This makes it easier for contributors to check if their code runs correctly without having to file a PR. The Mac and Windows workflows are a bit more involved, so let's keep those on pull requests only.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml
index a578fc6..47f4883 100644
--- a/.github/workflows/linux.yml
+++ b/.github/workflows/linux.yml
@@ -1,10 +1,6 @@
 name: linux
 
-on:
-  push:
-    branches: [ master ]
-  pull_request:
-    branches: [ master ]
+on: [push, pull_request]
 
 # Set permissions at the job level.
 permissions: {}