From 00dfd400555d92c03cb79e0eb77d4baecc7801ab Mon Sep 17 00:00:00 2001 From: Eliah Kagan Date: Mon, 8 Apr 2024 18:05:15 -0400 Subject: [PATCH] Run most CI checks on all branches But still only on the same paths (and ignoring tags) as before. --- .github/workflows/ci.yml | 29 ++--------------------------- 1 file changed, 2 insertions(+), 27 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e2901d1a930..4ddef665b6d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,32 +4,7 @@ env: CARGO_TERM_COLOR: always CLICOLOR: 1 -on: - push: - branches: [ main ] - tags-ignore: [ '*' ] - paths: - - '.github/**' - - 'ci/**' - - 'etc/**' - - 'src/**' - - 'tests/**' - - 'cargo-*/**' - - 'gix*/**' - - '*.toml' - - Makefile - pull_request: - branches: [ main ] - paths: - - '.github/**' - - 'ci/**' - - 'etc/**' - - 'src/**' - - 'tests/**' - - 'cargo-*/**' - - 'gix*/**' - - '*.toml' - - Makefile +on: [push, pull_request, workflow_dispatch] jobs: pure-rust-build: @@ -176,7 +151,7 @@ jobs: # Let's not fail CI for this, it will fail locally often enough, and a crate a little bigger # than allows is no problem either if it comes to that. just check-size || true - + cargo-deny: runs-on: ubuntu-latest strategy: