Thanks to visit codestin.com
Credit goes to github.com

Skip to content

added line

added line #4

Workflow file for this run

name: My first Test
on:
pull_request:
branches:
- develop
jobs:
test:
runs-on: [ubuntu-latest, windows-latest]
defaults:
run:
working-directory: ./
strategy:
matrix:
python-version: [3.8, 3.12]
env:
NFAK: "1"
steps:
- uses: actions/checkout@v3
- name: Set up Environment
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version}}
- name: Install Dependencies
run:
python -m pip install --upgrade pip
pip install -r unittest
- name: Test Function
run: python ./faculty_test.py