Skip to content

feature(github-workflows): Add initial github workflows #2

feature(github-workflows): Add initial github workflows

feature(github-workflows): Add initial github workflows #2

name: Create package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8"]
steps:
- uses: actions/checkout@v3
- name: Set up Python for Demo
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies for demo Python project
run: |
python -m pip install --upgrade pip
pip install pytest proxmoxer
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Testing the project using pytest
run: |
cd packaging
./01_package.sh