From cf0fb22b06d395801bba174885509e2a1ae84a1d Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sat, 19 Mar 2022 15:25:43 +0000 Subject: [PATCH] :octocat: Adds GH workflow to test dotfiles --- .github/workflows/build.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..fef8f3b --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,13 @@ +name: CI +on: + push: + workflow_dispatch: +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - run: | + mkdir -p ~/dotfiles-install-dir + - run: | + HOME=~/dotfiles-install-dir ./install \ No newline at end of file