diff --git a/.github/ci/properties/python.properties.json b/.github/ci/properties/python.properties.json new file mode 100644 index 0000000..e70267e --- /dev/null +++ b/.github/ci/properties/python.properties.json @@ -0,0 +1,6 @@ +{ + "name": "Python build", + "description": "Build the python packages", + "iconName": "python", + "categories": ["Continuous integration", "Python"] +} diff --git a/.github/ci/python.yml b/.github/ci/python.yml new file mode 100644 index 0000000..caf7c1c --- /dev/null +++ b/.github/ci/python.yml @@ -0,0 +1,25 @@ +--- +name: Python application + +on: + push: + branches: [ $default-branch ] + pull_request: + branches: [ $default-branch ] + +permissions: + contents: read + +jobs: + build-debian: + runs-on: debian-latest + steps: + - uses: actions/checkout@v3 + - name: Set up Python 3.10 + uses: actions/setup-python@v3 + with: + python-version: "3.10" + - name: Build package + run: | + make +