From 359ea760e761056349935a8f275eefcad2e2c59b Mon Sep 17 00:00:00 2001 From: Mads Marquart Date: Mon, 3 Jan 2022 22:59:53 +0100 Subject: [PATCH] Make CI run on changes to non-code files as well The repository is configured such that specific checks are required to pass before merging; since CI doesn't run on PRs that don't change code, they can't be merged without administrator intervention. Also, while this definition is currently correct, we might in the future change something so that changes to other files (like markdown files) really should be run through CI. And example of that could be: ```rust #[cfg(doctest)] #[doc = include_str!("../README.md")] extern "C" {} ``` --- .github/workflows/ci.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1457eaa5b6..1076aa5655 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,16 +2,8 @@ name: CI on: pull_request: - paths: - - '**.rs' - - '**.toml' - - '.github/workflows/ci.yml' push: branches: [master] - paths: - - '**.rs' - - '**.toml' - - '.github/workflows/ci.yml' jobs: Check_Formatting: