Skip to content

chore: update to 1.0.0 beta.2.2 #21

chore: update to 1.0.0 beta.2.2

chore: update to 1.0.0 beta.2.2 #21

Workflow file for this run

name: pytest
on: [push, pull_request]
permissions:
contents: read
jobs:
run-tests:
name: Run tests (${{ matrix.python-version }})
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11" ]
runs-on: ubuntu-latest
container: python:${{ matrix.python-version }}
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r tests/requirements.txt
- name: Run pytest
run: |
pytest
env:
FTRACK_SERVER: ${{ secrets.FTRACK_SERVER }}
FTRACK_API_USER: ${{ secrets.FTRACK_API_USER }}
FTRACK_API_KEY: ${{ secrets.FTRACK_API_KEY }}