Add SourceCatalog #316
Workflow file for this run
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: Build Lint Test and Coverage | |
on: | |
push: | |
branches: [ main, "v*"] | |
pull_request: | |
branches: [ main, "v*"] | |
jobs: | |
build-lint-test-coverage: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.10", "3.11"] | |
defaults: | |
run: | |
shell: bash -l {0} | |
env: | |
OORB_DATA: /tmp/oorb/data | |
steps: | |
- name: Checkout git repo | |
uses: actions/checkout@v3 | |
- name: Get git tags | |
run: git fetch --prune --unshallow --tags | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'pip' # caching pip dependencies | |
- name: Install Testing Dependencies | |
run: | | |
pip install pip --upgrade | |
pip install ".[dev]" | |
- name: Lint | |
run: pdm run lint | |
- name: Test with coverage | |
run: pdm run coverage | |
- name: Coverage report to coveralls | |
uses: coverallsapp/[email protected] | |
with: | |
path-to-lcov: coverage.xml |