Fix yaml runner
All checks were successful
Punisher CI/CD / build-and-test (push) Successful in 47s

This commit is contained in:
boloilking
2026-02-17 15:48:16 +01:00
parent 6dbff83b85
commit 98776f6d1c

View File

@@ -3,16 +3,20 @@ on: [push]
jobs: jobs:
build-and-test: build-and-test:
runs-on: ubuntu-latest # Dice al runner di usare Docker runs-on: ubuntu-latest
container: container:
image: gcc:latest # Usa un container con il compilatore C # Questa immagine è lo standard professionale per i runner Gitea/Act
options: --memory=128mb --cpus=0.5 # Limiti di risorse professionali image: catthehacker/ubuntu:act-latest
options: --memory=128mb --cpus=0.5
steps: steps:
- name: Checkout del codice - name: Checkout del codice
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Compilazione - name: Installazione dipendenze (se mancano)
run: apt-get update && apt-get install -y build-essential
- name: Compilazione Professionale
run: make build run: make build
- name: Esecuzione Test - name: Esecuzione Sandbox
run: make run run: make run