Skip to content

Update README.md

Update README.md #8

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install test runner
run: python -m pip install --upgrade pip pytest
- name: Install package
run: python -m pip install --no-deps -e .
- name: Syntax check
run: python -m compileall opensr_utils setup.py demo.py tests
- name: Shell syntax check
run: bash -n run_batch.sh
- name: Import tests
run: pytest -q