Skip to content

Removed poetry

Removed poetry #20

Workflow file for this run

name: Tests
on: push
jobs:
pytest:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Install maturin
run: pipx install maturin
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'
- run: maturin develop --release --all-features
- run: pytest -v
mypy:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Install maturin
run: pipx install maturin
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'
- run: maturin develop --release --all-features
- run: mypy ./pyobs_cloudcover