Merge pull request #7 from florianuhlig/main

main to Dev
This commit is contained in:
Florian Uhlig
2025-10-07 09:04:14 +02:00
committed by GitHub
3 changed files with 2 additions and 33 deletions

View File

@@ -6,7 +6,7 @@ on:
- Development
jobs:
build-and-test:
Review:
runs-on: ubuntu-latest
steps:

View File

@@ -5,7 +5,7 @@ on:
branches:
- Development
jobs:
check:
Linters:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
runs-on: ubuntu-latest
steps:

View File

@@ -1,31 +0,0 @@
name: Unit Test
on:
push:
branches:
- main
jobs:
Unit-Test:
runs-on: ubuntu-latest
steps:
# 1. Check out code
- name: Checkout repository
uses: actions/checkout@v3
# 2. Set up Python
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: '3.9'
# 3. Install dependencies
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest python-dotenv
# 6. Run unit tests
- name: Run pytest
run: pytest