Skip to content

New adam-assist propagator and impact detector as subpackage #15

New adam-assist propagator and impact detector as subpackage

New adam-assist propagator and impact detector as subpackage #15

Workflow file for this run

name: pip - 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.11"]
defaults:
run:
shell: bash -l {0}
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 }}
# # Use poetry to install dependencies
# - name: Install dependencies
# run: |
# python -m pip install --upgrade pip
# python -m pip install poetry
# poetry install --no-cache
# # Run linting
# - name: Lint with black
# run: poetry run black --check src tests
# # Run the tests
# - name: Run tests
# run: |
# pytest --cov=src --cov-report=xml
# # Use pip to install dependencies
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .
pip install pytest pytest-cov pytest-benchmark
# Run tests
- name: Run tests
run: |
pytest -vvv --cov=src --cov-report=xml
# - name: Coverage report to coveralls
# uses: coverallsapp/[email protected]
# with:
# github-token: ${{ secrets.COVERALLS_TOKEN }}
# path-to-lcov: coverage.xml