Skip to content

Bump github.com/stretchr/testify from 1.8.3 to 1.8.4 #69

Bump github.com/stretchr/testify from 1.8.3 to 1.8.4

Bump github.com/stretchr/testify from 1.8.3 to 1.8.4 #69

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: python
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3 # https://github.com/actions/checkout
- uses: actions/setup-python@v4 # https://github.com/actions/setup-python
with:
python-version: '3.x'
- name: install pytest
run: |
pip install -U pytest
python --version
pytest --version
echo "PYTHONPATH=$GITHUB_WORKSPACE:$PYTHONPATH" >> $GITHUB_ENV
- name: Run pytest
run: |
echo "PYTHONPATH=$PYTHONPATH"
pytest