Skip to content

Lab_0_1.2_Zatikian_Sergey #163

Lab_0_1.2_Zatikian_Sergey

Lab_0_1.2_Zatikian_Sergey #163

Workflow file for this run

name: CS102 Workflow
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.12.6
uses: actions/setup-python@v2
with:
python-version: '3.12.6'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install numpy scipy
- name: Run unittests
run: |
python -m unittest discover ${{ github.head_ref }}