Skip to content

Migrate Docs to Sphinx-Design, Remove NPS, Update Workflows (#109) #386

Migrate Docs to Sphinx-Design, Remove NPS, Update Workflows (#109)

Migrate Docs to Sphinx-Design, Remove NPS, Update Workflows (#109) #386

Workflow file for this run

# Runs all tests and pushes coverage report to codeclimate
name: Coverage
defaults:
run:
shell: bash
on: # Runs on all push events to master branch and any push related to a pull request
push:
branches:
- master
pull_request: # so that codeclimate gets coverage and reports on the diff
jobs:
coverage:
runs-on: ubuntu-latest
env:
python-version: 3.12
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ env.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ env.python-version }}
cache: 'pip'
cache-dependency-path: '**/pyproject.toml'
- name: Upgrade pip, setuptools and wheel
run: python -m pip install --upgrade pip setuptools wheel
- name: Install package with test dependencies
run: python -m pip install ".[test]"
- name: Get acc-models-lhc
run: git clone -b 2022 https://gitlab.cern.ch/acc-models/acc-models-lhc.git --depth 1
- name: Run all tests
run: make alltests
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}