feat: add CI workflow, rename package to mololog, and implement test harness with auto-exit

This commit is contained in:
2024-12-05 07:18:01 +00:00
parent 5cd2f5c915
commit 68f90f0da6
14 changed files with 155 additions and 60 deletions
+26
View File
@@ -0,0 +1,26 @@
name: Build
run-name: Build and test
on: [push]
jobs:
Build:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Update repo
run: git pull
- name: List files in the repository
run: |
ls ${{ gitea.workspace }}
- name: Update apt
run: apt update
- name: Installing system dependencies
run: apt install python3 python3-pip python3-venv make -y
- name: Run Make
run: make
- run: git add .
- run: git config --global user.email "bot@molodetz.com"
- run: git config --global user.name "bot"
- run: git commit -a -m "Automated update of package."
- run: git push