Skip to content
This repository has been archived by the owner on Nov 21, 2024. It is now read-only.

ENH: Add Badges

ENH: Add Badges #2

Workflow file for this run

name: Unit Test
on: [push, pull_request]
jobs:
test_and_lint:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['ubuntu-22.04', 'ubuntu-latest']
python-version: [ "3.12", "3.x" ]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: |
python3 -m pytest tests
- name: Run tests and collect coverage
run: |
python3 -m pytest tests --cov-report xml:coverage.xml --cov
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{secrets.CODECOV_TOKEN}}
files: cloud-coverage.xml