Skip to content

Sam/pipeline

Sam/pipeline #7

Workflow file for this run

# This workflow will build, test and check linting for the 1Password Python SDK.
name: Validate
on:
push:
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install pytest
run: |
pip install pytest pytest-cov
- name: Test with pytest
env:
OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.TEST_SA_TOKEN }}
run: |
pytest tests.py --doctest-modules --junitxml=junit/test-results.xml --cov=com --cov-report=xml --cov-report=html
- name: Lint with Ruff
run: |
pip install ruff
ruff --output-format=github .
continue-on-error: true