Skip to content

Unit testing CI

Unit testing CI #3

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
with:
python-version: '3.10'
- name: Run a script
run: python scripts/run_unittests.py