Skip to content

Commit

Permalink
Add CI hooks to verify ability to install
Browse files Browse the repository at this point in the history
  • Loading branch information
TAAPArthur committed Sep 9, 2023
1 parent 49f491e commit 1fe4013
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/install.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Install Ubuntu

on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Install
run: |
pip install $PWD
- name: Install User
run: |
pip install --user $PWD
14 changes: 14 additions & 0 deletions .github/workflows/install_macos.yml
Original file line number Diff line number Diff line change
@@ -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
14 changes: 14 additions & 0 deletions .github/workflows/install_windows.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 1fe4013

Please sign in to comment.