Skip to content

Commit

Permalink
added github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
AdnanAbouelela committed Dec 5, 2024
1 parent 7e91fcd commit 51f11a5
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/install.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Install

on:
push:
branches:
- main

jobs:
check-installation:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .
- name: Verify installation
run: |
python -c "import amex_merfish_spaceolotl"

0 comments on commit 51f11a5

Please sign in to comment.