From c76883d3ec30fb14135409b9c5eda98fe5b303a0 Mon Sep 17 00:00:00 2001 From: Didier Date: Sun, 16 Jul 2023 20:09:50 +0200 Subject: [PATCH] ci: only build on .rs changes --- .github/workflows/build.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 66d3753..2914e7d 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -3,7 +3,10 @@ # Builds the rust code and verifies that it compiles name: build -on: [ 'push' ] +on: + push: + paths: + - '**.rs' jobs: build: