Skip to content

Unit testing CI

Unit testing CI #2

Workflow file for this run

name: CI for Unit Tests
on:
push: {}
pull_request:
branches: [main]
jobs:
build:
runs-on: self-hosted
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v4

Check failure on line 16 in .github/workflows/unittest_ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/unittest_ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 16
with:
python-version: '3.10'
- name: Run a script
run: python scripts/run_unittests.py