From b5484e9060dea609f6c555cdb813125af2ca2d62 Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Fri, 16 Jan 2026 11:07:58 -0500 Subject: [PATCH] fix(ci): cleanup --- .github/workflows/ci.yaml | 14 ++------------ include/bmath/sieve.hh | 2 -- 2 files changed, 2 insertions(+), 14 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 05c9164..1742c2a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -2,19 +2,9 @@ name: ci on: push: - paths: - - 'include/**' - - 'src/**' - - 'tests/**' - - 'CMakeLists.txt' - - '.github/workflows/**' + branches: [main] pull_request: - paths: - - 'include/**' - - 'src/**' - - 'tests/**' - - 'CMakeLists.txt' - - '.github/workflows/**' + branches: [main] jobs: format: diff --git a/include/bmath/sieve.hh b/include/bmath/sieve.hh index 048357c..e172e10 100644 --- a/include/bmath/sieve.hh +++ b/include/bmath/sieve.hh @@ -8,8 +8,6 @@ namespace bmath { - auto _ = 1+1; - template requires(Limit > 0) class Sieve {