Compare commits

...

16 Commits

Author SHA1 Message Date
4a40c38686 workflow build&test 3 2026-03-02 21:15:12 +03:00
9955c1986c workflow build&test 2
All checks were successful
Verification / Is-Buildable (push) Successful in 2m5s
2026-03-02 21:09:12 +03:00
15fb311c66 workflow build&test
Some checks failed
Verification / Is-Buildable (push) Failing after 1m52s
2026-03-02 21:00:34 +03:00
5c5b886360 build test 12
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 1m50s
2026-03-02 20:46:39 +03:00
1eea074051 build test 11
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 4s
2026-03-02 20:44:38 +03:00
626cfa64f2 build test 10
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 1m6s
2026-03-02 20:38:50 +03:00
00da1c9f32 build test 9
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 1m6s
2026-03-02 20:36:19 +03:00
c5ede14eaf build test 8
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 13s
2026-03-02 20:35:18 +03:00
981568f104 build test 7
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 39s
2026-03-02 20:32:48 +03:00
638c565702 build test 6
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 27s
2026-03-02 20:31:46 +03:00
81f8f709a2 build test 5
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 11s
2026-03-02 20:31:01 +03:00
6fea0e2450 build test 4
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 21s
2026-03-02 20:27:36 +03:00
e881b6b699 build test 3
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 20s
2026-03-02 20:26:30 +03:00
2157b25a95 build test 2
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 6s
2026-03-02 20:25:25 +03:00
f2dfee7a38 build test
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 10s
2026-03-02 20:21:48 +03:00
5afbf771ca test
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 1m27s
2026-03-02 20:16:25 +03:00

View File

@ -0,0 +1,34 @@
name: Verification
run-name: ${{ gitea.actor }} runs verification of the project
on:
push:
branches:
- 'master'
jobs:
Is-Buildable:
runs-on: ubuntu-latest
steps:
- name: Ensure That Build system available
run: |
apt update
DEBIAN_FRONTEND=noninteractive apt install -y cmake make ninja-build gcc
- name: Prepare Environment
run: |
python3 -m venv $HOME/py/
source $HOME/py/bin/activate
echo PATH=$PATH >> $GITEA_ENV
pip install meson
- name: Check out repository code
uses: actions/checkout@v4
with:
submodules: 'true'
- name: Build project
run: |
cd ${{ gitea.workspace }}
meson setup build
meson compile -C build
- name: Unit Test Results
run: |
meson test -C build
- run: echo "🍏 This job's status is ${{ job.status }}."