Skip to content

Commit 28185c5

Browse files
committed
run github workflow only if an actual change has happened
1 parent ee73d00 commit 28185c5

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/rust.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,18 @@ name: Build development version
33
on:
44
push:
55
branches: [ "main" ]
6+
paths:
7+
- .github/**
8+
- src/**
9+
- Cargo.toml
10+
- Cargo.lock
611
pull_request:
712
branches: [ "main" ]
13+
paths:
14+
- .github/**
15+
- src/**
16+
- Cargo.toml
17+
- Cargo.lock
818
workflow_dispatch:
919

1020
jobs:

0 commit comments

Comments
 (0)