From 8e0dfcce757f36eda673b6ecf62bcc9a4b3e1cb8 Mon Sep 17 00:00:00 2001 From: Brandon High <759848+highb@users.noreply.github.com> Date: Fri, 27 Oct 2023 12:19:21 -0700 Subject: [PATCH 1/2] Add CI --- .github/workflows/ci.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/ci.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 0000000..5200429 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,22 @@ +--- +name: ci +on: + pull_request: + branches: + - main + push: + branches: + - main +jobs: + ci: + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: + - macos-12 + - ubuntu-22.04 + steps: + - uses: actions/checkout@v4 + with: + path: .bhell + - run: bash .bhell/setup.sh From 2b91f7f155ad61de4fa9fea817cd20cb6d3bc7da Mon Sep 17 00:00:00 2001 From: Brandon High <759848+highb@users.noreply.github.com> Date: Fri, 27 Oct 2023 12:22:22 -0700 Subject: [PATCH 2/2] Tilde/home dir --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5200429..d6f3e33 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -18,5 +18,5 @@ jobs: steps: - uses: actions/checkout@v4 with: - path: .bhell - - run: bash .bhell/setup.sh + path: ~/.bhell + - run: bash ~/.bhell/setup.sh