This repository has been archived by the owner on Jul 24, 2024. It is now read-only.
Move integrationtestscenario in template #861
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: tests | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test: | |
permissions: | |
checks: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.11 | |
- name: Install pipenv | |
run: pip install pipenv==2023.7.23 | |
- name: Create virtualenv | |
run: pipenv sync | |
- name: Run tests | |
run: | | |
pipenv run pytest tests |