Test of test automation for nest nest_functions

This commit is contained in:
Benjamin Harder
2023-10-02 22:12:27 +02:00
parent ed55a11a47
commit 49658b596a
2 changed files with 19 additions and 4 deletions

View File

@@ -9,10 +9,25 @@ on:
tags: ["v[0-9]+.[0-9]+.[0-9]*"]
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with pytest
run: |
pip install pytest pytest-cov
pytest -vv
build:
runs-on: ubuntu-latest
# outputs:
# new_tag: ${{ steps.setversion.outputs.new_tag }}
runs-on: ubuntu-latest
defaults:
run:
working-directory: '.'