Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make the Github Action work only when needed #202

Merged
merged 2 commits into from
Mar 3, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
add paths-ignore to ci.yml
  • Loading branch information
C-BJ authored Mar 3, 2023
commit 7a687a09d720db3daf1badb12ad1c1608f8ae33b
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
name: Rust
name: CI

on:
push:
branches: ["main"]
paths-ignore:
- "docs/**"
- "README.md"
pull_request:
branches: ["main"]
paths-ignore:
- "docs/**"
- "README.md"

env:
CARGO_TERM_COLOR: always
Expand Down