Skip to content

build(deps): bump aquasecurity/trivy-action from 0.16.1 to 0.19.0 #577

build(deps): bump aquasecurity/trivy-action from 0.16.1 to 0.19.0

build(deps): bump aquasecurity/trivy-action from 0.16.1 to 0.19.0 #577

Workflow file for this run

name: Pytest
on:
workflow_dispatch:
pull_request:
types: [opened, edited, reopened, synchronize]
jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.1
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test with pytest
run: |
make test