diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..f06be273 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,24 @@ +name: Build and Testing + +on: + push: + branches: [master] + pull_request: + branches: [master] + +jobs: + UnitestPython38: + + name: Python3.8 Tests + runs-on: ubuntu-latest + # needs: None + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-python@v4 + with: + python-version: '3.8' + cache: 'pip' + - name: Install Dependencies + run: | + pip install numpy + python -m pip list \ No newline at end of file