From 65b2e7fc1ac91571245942add3c78a429a1c6d68 Mon Sep 17 00:00:00 2001 From: martonvago Date: Tue, 19 Aug 2025 11:29:45 +0100 Subject: [PATCH] refactor: :recycle: use reusable-test-copier workflow --- .github/workflows/test.yml | 21 +-------------------- justfile | 2 ++ 2 files changed, 3 insertions(+), 20 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cf42acf..acf12ef 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,23 +11,4 @@ permissions: read-all jobs: test-copier: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 - - - name: Set up uv - uses: astral-sh/setup-uv@d9e0f98d3fc6adb07d1e3d37f3043649ddad06a1 - with: - enable-cache: true - - - name: Install justfile and zsh - run: sudo apt install -y just zsh - - - name: Set Git user - run: | - git config --global user.name "GitHub Actions" - git config --global user.email "fake@example.com" - - - name: Test and check template creation - run: just test + uses: seedcase-project/.github/.github/workflows/reusable-test-copier.yml@main diff --git a/justfile b/justfile index 9503329..dcd86db 100644 --- a/justfile +++ b/justfile @@ -1,6 +1,8 @@ @_default: just --list --unsorted +@_tests: test + # Run all build-related recipes in the justfile run-all: check-spelling check-commits test build-website build-readme