fix: do not run CI for rust code when it is not modified
Some checks failed
Typo / typo (push) Waiting to run
Rust / doc (ubuntu-latest) (push) Has been cancelled
Rust / check (ubuntu-latest) (push) Has been cancelled
Rust / fmt (push) Has been cancelled
Rust / test (macos-latest) (push) Has been cancelled
Rust / test (ubuntu-latest) (push) Has been cancelled
Rust / clippy (macos-latest) (push) Has been cancelled
Rust / clippy (ubuntu-latest) (push) Has been cancelled
Rust / check (macos-latest) (push) Has been cancelled
Rust / doc (macos-latest) (push) Has been cancelled
Lockbud / lockbud (push) Has been cancelled

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

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" ]