Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 1 addition & 20 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
run: sudo apt install -y just

- 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
2 changes: 2 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
@@ -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

Expand Down