Skip to content

Commit 6ebf169

Browse files
author
Riccardo Priori
committed
add: compile.yaml
1 parent 600f2b6 commit 6ebf169

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

.github/workflows/compile.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Compile c++
2+
3+
on:
4+
push
5+
jobs:
6+
basic-job:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Clone the repo
10+
uses: actions/checkout@v4
11+
- name: Install g++
12+
run: sudo apt install gcc
13+
- name: Compile the file
14+
run: g++ file.cpp

0 commit comments

Comments
 (0)