Add in some github actions

This commit is contained in:
June Tate-Gans 2024-03-24 10:34:11 -05:00
parent 16441f2c3e
commit bd1eef6c17
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,6 @@
{
"name": "Python build",
"description": "Build the python packages",
"iconName": "python",
"categories": ["Continuous integration", "Python"]
}

25
.github/ci/python.yml vendored Normal file
View File

@ -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