build(version): 🔖 update version from 0.13.0 to 0.14.0 #149
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test template creation | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
# Least privilege permissions | |
permissions: read-all | |
jobs: | |
test-copier: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
- name: Set up uv | |
uses: astral-sh/setup-uv@bd01e18f51369d5a26f1651c3cb451d3417e3bba | |
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 "[email protected]" | |
- name: Test and check template creation | |
run: just test |