From fd678ce408325edee784866b67496f01aa12fe3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89milien=20=28perso=29?= <4016501+unixfox@users.noreply.github.com> Date: Wed, 14 Aug 2024 13:14:30 +0200 Subject: [PATCH] rename github workflow about test and ignore some paths --- .github/workflows/rust.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 6f422c4..8ebf427 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -1,13 +1,19 @@ -name: Rust +name: Build and test inv_sig_helper on: push: branches: [ "master" ] + paths-ignore: + - 'LICENSE' + - 'README.md' + - 'docker-compose.yml' pull_request: branches: [ "master" ] schedule: # every 2 hours - cron: "0 */2 * * *" + workflow_dispatch: # Allow manual triggering of the workflow + env: CARGO_TERM_COLOR: always