Skip to content

Merge branch 'master' of https://github.com/CodeThreat/codethreat-cli #64

Merge branch 'master' of https://github.com/CodeThreat/codethreat-cli

Merge branch 'master' of https://github.com/CodeThreat/codethreat-cli #64

Workflow file for this run

name: CI
on: [ push, pull_request ]
jobs:
test:
runs-on: ubuntu-latest
env:
CODETHREAT_ORG: ${{ secrets.CODETHREAT_ORG }}
CODETHREAT_TOKEN: ${{ secrets.CODETHREAT_TOKEN }}
CODETHREAT_URL: ${{ secrets.CODETHREAT_URL }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest
- name: Run tests
run: |
pytest tests/