Files
mrubypp/.gitea/workflows/ubuntu.yaml
zekexiao 4d635706ec
Some checks failed
ubuntu / Explore-Gitea-Actions (push) Has been cancelled
ci
2025-10-21 22:18:38 +08:00

19 lines
525 B
YAML

name: ubuntu
run-name: ubuntu-test
on: [ push ]
jobs:
Explore-Gitea-Actions:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: List files in the repository
run: |
ls ${{ gitea.workspace }}
apt update && apt install libmruby-dev
mkdir build && cd build
cmake ..
cmake --build . --target mrubypp_test
./mrubypp_test
- run: echo "🍏 This job's status is ${{ job.status }}."