Skip to content

Current releases

Current releases #1927

name: Current releases
on:
push:
branches:
- master
pull_request:
# Run daily at 0:01 UTC
schedule:
- cron: '1 0 * * *'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest pytest-cov coveralls>=1.9.2
- name: Install package and upgrade dependencies to PyPI current release
run: |
python -m pip install .
python -m pip install --upgrade -r requirements_current_release.txt
python -m pip list
- name: Test with pytest
run: pytest --cov=skhep tests