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 df5fbcf commit d508b92
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/install.yml
Original file line number Diff line number Diff line change
@@ -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
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 d508b92

Please sign in to comment.