We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3488003 commit c163cffCopy full SHA for c163cff
1 file changed
.github/workflows/basic_workflow.yaml
@@ -1,13 +1,17 @@
1
-name: Basic workflow
+name: Compile c++
2
3
on:
4
- push:
5
- branches:
6
- - main
+ push
7
8
jobs:
9
basic-job:
10
runs-on: ubuntu-latest
11
steps:
12
- - name: Hello world
13
- run: echo "Hello, world!"
+ - name: Clone the repo
+ uses: actions/checkout@v4
+
+ - name: Install g++
14
+ run: sudo apt install gcc
15
16
+ - name: Compile the file
17
+ run: g++ file.cpp
0 commit comments