Ver código fonte

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 anos atrás
pai
commit
f40df8ea15
1 arquivos alterados com 2 adições e 2 exclusões
  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