Skip to content

Commit fd75df1

Browse files
committed
modified: basic_workflow
1 parent 3488003 commit fd75df1

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/basic_workflow.yaml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
name: Basic workflow
23

34
on:
@@ -9,5 +10,9 @@ jobs:
910
basic-job:
1011
runs-on: ubuntu-latest
1112
steps:
12-
- name: Hello world
13-
run: echo "Hello, world!"
13+
- name: Clone the repo
14+
uses: actions/checkout@v4
15+
- name: Install g++
16+
run: sudo apt install gcc
17+
- name: Compile the file
18+
run: g++ file.cpp

0 commit comments

Comments
 (0)