Merge pull request #7 from Kaushl2208/feat/Release-Changelog #26
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
# SPDX-FileCopyrightText: © 2025 Siemens AG | |
# SPDX-FileCopyrightText: © Kaushlendra Pratap Singh <[email protected]> | |
# | |
# SPDX-License-Identifier: LGPL-2.1-only | |
name: Build Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Install build tools | |
run: | | |
python3 -m pip install --upgrade pip | |
python3 -m pip install setuptools wheel | |
- name: Build package | |
run: | | |
python3 setup.py sdist bdist_wheel | |
working-directory: ./Safaa | |