Added workflow examples

This commit is contained in:
2026-01-06 17:05:50 +02:00
parent 02a7af086d
commit e8312aae1d
2 changed files with 35 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
name: Compile
run-name: Compiling the software
on: [push]
jobs:
Compile:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Compile software
run: g++ main.cpp -o program
- name: Execute program
run: ./program