Skip to content
This repository has been archived by the owner on Jun 10, 2024. It is now read-only.

Merge pull request #455 from lincc-frameworks/hombit-patch-1 #1

Merge pull request #455 from lincc-frameworks/hombit-patch-1

Merge pull request #455 from lincc-frameworks/hombit-patch-1 #1

Workflow file for this run

name: CI for Template
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@main
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@main
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt-get update
python -m pip install --upgrade pip
pip install -e .[dev]
- name: Run unit tests with pytest / pytest-copie
run: |
python -m pytest