Skip to content

Commit

Permalink
ci: add test install
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinNitroG committed Feb 7, 2025
1 parent aa76290 commit 13c51b1
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/test-install.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Test Install

on:
push:
branches:
- main

jobs:
test:
strategy:
fail-fast: true
matrix:
os:
- windows
- ubuntu
- macos
runs-on: ${{ matrix.os }}-latest
name: Test on ${{ matrix.os }}
steps:
- name: Install chezmoi
shell: bash
run: bash <(curl -fsLS get.chezmoi.io)
- name: Init chezmoi
run: chezmoi init ${{ github.repository_owner }} --depth 1 --exclude=encrypted --exclude=externals --exclude=scripts --promptDefaults

0 comments on commit 13c51b1

Please sign in to comment.