From d508b924fe5f3fa2064e8b09a58cf341d968f541 Mon Sep 17 00:00:00 2001 From: Arthur Williams Date: Sat, 9 Sep 2023 01:06:45 -0700 Subject: [PATCH] Add CI hooks to verify ability to install --- .github/workflows/install.yml | 14 ++++++++++++++ .github/workflows/install_macos.yml | 14 ++++++++++++++ .github/workflows/install_windows.yml | 14 ++++++++++++++ 3 files changed, 42 insertions(+) create mode 100644 .github/workflows/install.yml create mode 100644 .github/workflows/install_macos.yml create mode 100644 .github/workflows/install_windows.yml diff --git a/.github/workflows/install.yml b/.github/workflows/install.yml new file mode 100644 index 00000000..b8028621 --- /dev/null +++ b/.github/workflows/install.yml @@ -0,0 +1,14 @@ +name: Install Ubuntu + +on: [push, pull_request] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Install + run: | + pip install $PWD diff --git a/.github/workflows/install_macos.yml b/.github/workflows/install_macos.yml new file mode 100644 index 00000000..4b6efefb --- /dev/null +++ b/.github/workflows/install_macos.yml @@ -0,0 +1,14 @@ +name: Install Mac + +on: [push, pull_request] + +jobs: + build: + + runs-on: macos-latest + + steps: + - uses: actions/checkout@v3 + - name: Install + run: | + pip install $PWD diff --git a/.github/workflows/install_windows.yml b/.github/workflows/install_windows.yml new file mode 100644 index 00000000..63d8e1b7 --- /dev/null +++ b/.github/workflows/install_windows.yml @@ -0,0 +1,14 @@ +name: Install Windows + +on: [push, pull_request] + +jobs: + build: + + runs-on: macos-latest + + steps: + - uses: actions/checkout@v3 + - name: Install + run: | + pip install $PWD