Skip to content

build: 🔧 do not skip workflows on version bump (#6) #14

build: 🔧 do not skip workflows on version bump (#6)

build: 🔧 do not skip workflows on version bump (#6) #14

Workflow file for this run

name: Test template creation
on:
push:
branches:
- main
pull_request:
# Least privilege permissions
permissions: read-all
jobs:
test-copier:
runs-on: ubuntu-latest
env:
TEMPLATE_NAME: template-workshop
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with:
# Clone template to a subdirectory
path: ${{ env.TEMPLATE_NAME }}
- name: Set up uv
uses: astral-sh/setup-uv@bd01e18f51369d5a26f1651c3cb451d3417e3bba
with:
enable-cache: true
cache-dependency-glob: "**/uv.lock"
- name: Install justfile
run: sudo apt-get install -y just
- name: Generate a data package
# TODO: Add other pre/post setup steps here.
run: |
just test General
just test R
- name: Checks
run: |
uvx typos