mirror of
https://github.com/jtgans/g13gui.git
synced 2025-06-20 00:14:09 -04:00
Add in some github actions
This commit is contained in:
parent
16441f2c3e
commit
bd1eef6c17
6
.github/ci/properties/python.properties.json
vendored
Normal file
6
.github/ci/properties/python.properties.json
vendored
Normal 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
25
.github/ci/python.yml
vendored
Normal 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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user