Skip to content

chore(r-ver): bump R version #31

chore(r-ver): bump R version

chore(r-ver): bump R version #31

Workflow file for this run

name: CI - Test Templates
on:
pull_request:
branches:
- main
paths:
- src/**
- test/**
- "!**.md"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
detect-changes:
runs-on: ubuntu-latest
outputs:
templates: ${{ steps.filter.outputs.changes }}
steps:
- uses: dorny/paths-filter@v3
id: filter
with:
filters: |
r-ver: ./**/r-ver/**
r2u: ./**/r2u/**
test-detects:
if: ${{ github.event_name == 'pull_request' }}
needs:
- detect-changes
runs-on: ubuntu-latest
continue-on-error: true
strategy:
matrix:
templates: ${{ fromJSON(needs.detect-changes.outputs.templates) }}
steps:
- uses: actions/checkout@v4
- name: Smoke test for '${{ matrix.templates }}'
id: smoke_test
uses: ./.github/workflows/actions/smoke-test
with:
template: "${{ matrix.templates }}"