Skip to content

Add katbeam S band option #19

Add katbeam S band option

Add katbeam S band option #19

Workflow file for this run

name: spimple Workflow
on: [pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-20.04, ubuntu-22.04 ]
python-version: ["3.8", "3.9", "3.10"]
steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version}}
- name: Checkout source
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Upgrade pip and setuptools
run: python -m pip install -U pip setuptools
- name: Install spimple
run: python -m pip install .[testing]
- name: Run tests
run: py.test -s -vvv tests/
deploy:
needs: [test]
runs-on: ubuntu-latest
steps:
- name: Deploy Step
run: >
echo "Deploying PyPI"