From bc8d5e2821e8aff342897f7912ffdb77a5ef5e04 Mon Sep 17 00:00:00 2001 From: Michel Peterson Date: Tue, 5 Nov 2024 19:05:34 +0200 Subject: [PATCH] Create test-bootstrapper.yml --- .github/workflows/test-bootstrapper.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/test-bootstrapper.yml diff --git a/.github/workflows/test-bootstrapper.yml b/.github/workflows/test-bootstrapper.yml new file mode 100644 index 0000000..ebe2a19 --- /dev/null +++ b/.github/workflows/test-bootstrapper.yml @@ -0,0 +1,23 @@ +name: Validate bootstrapping works + +on: + push: + branches: [ "master" ] + pull_request: + workflow_dispatch: + +jobs: + tests: + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: + - ubuntu-latest + - macos-latest + steps: + - name: Bootstrap the agent + run: bash <(wget -q -O - https://raw.githubusercontent.com/mpeterson/dotfiles/master/bootstrap-dotfiles.sh) + + - name: Load zsh + run: zsh -l +