fix: do not run CI for rust code when it is not modified

This commit is contained in:
Cyrix126 2024-11-06 12:54:31 +01:00
parent b487c0c406
commit 3f88ae9c6d
2 changed files with 6 additions and 1 deletions
.github/workflows

View file

@ -1,6 +1,9 @@
name: Lockbud
on: push
on:
push:
paths-ignore:
- '**/*.md'
jobs:
test:

View file

@ -3,6 +3,8 @@ name: Rust
on:
push:
branches: [ "main", "dev" ]
paths-ignore:
- '**/*.md'
pull_request:
branches: [ "main" ]