Skip to content

updated badges & citation #6

updated badges & citation

updated badges & citation #6

Workflow file for this run

name: CI happywhale
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
python-version: ["3.10"]
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies (Windows)
continue-on-error: true
run: python -m pip install --upgrade pip
pip install -U pip setuptools
pip install wheel
if: matrix.os == 'windows-latest'
- name: Install Dependencies (Mac)
continue-on-error: true
run: brew install gdal
if: matrix.os == 'macos-latest'
- name: Install Dependencies (Ubuntu)
continue-on-error: true
run: sudo add-apt-repository ppa:ubuntugis/ppa -y
sudo apt-get update
sudo apt-get install python3-gdal -y
if: matrix.os == 'ubuntu-latest'
- name: Test package
run: |
pip install -r requirements.txt
python setup.py install
happywhale -h