From bd1eef6c17aef73a240ab9d54ce9145dcfc09550 Mon Sep 17 00:00:00 2001 From: June Tate-Gans Date: Sun, 24 Mar 2024 10:34:11 -0500 Subject: [PATCH] Add in some github actions --- .github/ci/properties/python.properties.json | 6 +++++ .github/ci/python.yml | 25 ++++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 .github/ci/properties/python.properties.json create mode 100644 .github/ci/python.yml 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 +