Skip to content

action for python 3.* #579

action for python 3.*

action for python 3.* #579

Workflow file for this run

name: Python
on:
push:
paths:
- 'python/**.py'
- '**django.yml'
branches: [ master ]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ['3.7', '3.8']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
#pip install -r requirements.txt
- name: Run Build
run: |
cd python
#python setup.py build