Skip to content

chore(deps): bump idna from 3.3 to 3.7 in /demos/jans-tent #101

chore(deps): bump idna from 3.3 to 3.7 in /demos/jans-tent

chore(deps): bump idna from 3.3 to 3.7 in /demos/jans-tent #101

Workflow file for this run

name: Pytest Python
on:
push:
branches:
- main
paths:
#TODO: add all python projects paths below "jans-pycloudlib", "jans-cli-tui", "jans-linux-setup"
- 'demos/jans-tent/**'
pull_request:
branches:
- main
paths:
#TODO: add all python projects paths below "jans-pycloudlib", "jans-cli-tui", "jans-linux-setup"
- 'demos/jans-tent/**'
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
strategy:
#max-parallel: 1
fail-fast: false
matrix:
#TODO: add all python projects paths below "jans-pycloudlib", "jans-cli-tui", "jans-linux-setup"
python-projects: ["demos/jans-tent"]
steps:
- name: Harden Runner
uses: step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895 # v2.6.1
with:
egress-policy: audit
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Set up Python 3.8
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
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
working-directory: ${{ matrix.python-projects }}
- name: Pytest
run: |
python -m pytest
working-directory: ${{ matrix.python-projects }}