Skip to content

tests: adding coverage #9

tests: adding coverage

tests: adding coverage #9

Workflow file for this run

name: CI
on:
push:
branches:
- master
tags:
- '**'
pull_request: {}
jobs:
test:
name: test py${{ matrix.python }} on ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python: ['3.9', '3.10', '3.11', '3.12']
env:
PYTHON: ${{ matrix.python }}
OS: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: set up python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- run: pip install -r requirements-test.txt
- name: test
run: pytest --cov=pydantic_settings_aws --cov-report=xml
- uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}