Skip to content

Test v5 beta

Test v5 beta #66

Workflow file for this run

name: API tokenless workflow
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
name: Test python API
steps:
- name: Checkout codecov-cli test branch
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run tests and collect coverage
run: pytest --cov=api.calculator --cov-report=xml
- name: Upload to Codecov
uses: codecov/codecov-action@v5-beta
with:
verbose: true