Add katbeam S band option #19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |