Skip to content

Actions: Fix by creating empty config file #2

Actions: Fix by creating empty config file

Actions: Fix by creating empty config file #2

Workflow file for this run

name: Python Unit Tests
on: [push, pull_request] # Define when the workflow should be triggered
jobs:
test:
name: Run Unit Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run unittest
run: |
echo '{}' > config.json # Create an empty config file
python -m unittest