feature(github-workflows): Add initial github workflows #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |