From 9eb03bd6f11c9a28303e850725803515da818886 Mon Sep 17 00:00:00 2001 From: Matthew Butcher Date: Wed, 24 Sep 2025 11:51:10 -0700 Subject: [PATCH] trying to add solutions to questions 1 and 2 --- compile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 compile diff --git a/compile b/compile new file mode 100644 index 0000000..61ed834 --- /dev/null +++ b/compile @@ -0,0 +1,12 @@ +nae: compile +// how to add push and pull i think. change here two +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Compile C++ Application + run: g++ -std=c++17 main.cpp -o my_application \ No newline at end of file