From 155c5266f37e2942a109f1248399018bb69266c9 Mon Sep 17 00:00:00 2001 From: Hannah Frick Date: Mon, 2 Jun 2025 10:08:32 +0100 Subject: [PATCH] add action for recommended sanity checks --- .github/workflows/validate-ctv.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/validate-ctv.yml diff --git a/.github/workflows/validate-ctv.yml b/.github/workflows/validate-ctv.yml new file mode 100644 index 0000000..58d4172 --- /dev/null +++ b/.github/workflows/validate-ctv.yml @@ -0,0 +1,23 @@ +on: + push: + branches: + - main + - master + paths: + - '.github/workflows/validate-ctv.yml' + - 'MachineLearning.md' + pull_request: + branches: + - main + - master + paths: + - '.github/workflows/validate-ctv.yml' + - 'MachineLearning.md' + +name: Validate task view + +jobs: + validate-ctv: + runs-on: ubuntu-latest + steps: + - uses: cran-task-views/ctv/validate-ctv@main