Skip to content

Update deploy_release.yaml #383

Update deploy_release.yaml

Update deploy_release.yaml #383

Workflow file for this run

name: Python Tests
on: [push, pull_request]
jobs:
build:
name: Python Version Matrix
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13']
steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- uses: actions/checkout@v1
with:
fetch-depth: 20
- name: Python tests
run: |
pip install '.[test]'
python -m pytest --cov=fides --cov-report xml:coverage.xml --cov-report term ./tests
- name: Codecov
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: coverage.xml
fail_ci_if_error: true