Skip to content

new g++ action on workflow #2

new g++ action on workflow

new g++ action on workflow #2

name: Compile c++
on:
push
jobs:
basic-job:
runs-on: ubuntu-latest
steps:
- name: Clone the repo
uses: actions/checkout@v4
- name: Install g++
run: sudo apt install gcc
- name: Compile the file
run: g++ file.cpp