Forráskód Böngészése

ci: optimise action triggers

it is pointless to run CI jobs for pushes / PRs that only change files that
would never cause a failure, such as documentation.

this avoids wasting resources for such situations.
Lyndon Brown 4 éve
szülő
commit
013a2fdcbf
1 módosított fájl, 2 hozzáadás és 0 törlés
  1. 2 0
      .github/workflows/test.yml

+ 2 - 0
.github/workflows/test.yml

@@ -4,8 +4,10 @@ name: test
 on:
   push:
     branches: [master, dev]
+    paths: ['**.rs', '**.toml', '**.lock', '**.yml']
   pull_request:
     branches: [master, dev]
+    paths: ['**.rs', '**.toml', '**.lock', '**.yml']
 
 jobs:
   fmt: