From e53a525c3c1f3c18c7a642e5e8062a7beb52349a Mon Sep 17 00:00:00 2001 From: Madjda Fares Date: Tue, 26 Aug 2025 23:01:43 -0400 Subject: [PATCH] chore(ci): add minimal CI and ignore dataset paths --- .github/workflows/ci.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..c56113dc --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,17 @@ +name: CI +on: + push: + paths-ignore: + - 'datasets/**' + pull_request: + paths-ignore: + - 'datasets/**' +jobs: + checks: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: { python-version: "3.11" } + - run: pip install pre-commit detect-secrets + - run: pre-commit run --all-files