Skip to content

improving data preprocessing script #3

improving data preprocessing script

improving data preprocessing script #3

name: Python Unit Tests
on:
push:
branches: [ ** ]

Check failure on line 5 in .github/workflows/python-unit-test.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/python-unit-test.yaml

Invalid workflow file

You have an error in your yaml syntax on line 5
pull_request:
branches: [ ** ]
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run unit tests
run: python -m unittest discover