Browse Source

Fix CI by running on `main` branch instead of `master`

Ugh I hadn't noticed that CI was broken, which didn't pick up that a PR
didn't actually build.
Isaac Woods 2 years ago
parent
commit
f40df8ea15
1 changed files with 2 additions and 2 deletions
  1. 2 2
      .github/workflows/build.yml

+ 2 - 2
.github/workflows/build.yml

@@ -2,9 +2,9 @@ name: Build
 
 on:
   push:
-    branches: [ master ]
+    branches: [ main ]
   pull_request:
-    branches: [ master ]
+    branches: [ main ]
 
 env:
   CARGO_TERM_COLOR: always