From 97604d6665e5ba80b920a4a2218cd9106efc6d4f Mon Sep 17 00:00:00 2001 From: cliebentritt4 Date: Tue, 3 Mar 2026 13:58:06 -0600 Subject: [PATCH 1/4] first --- .github/workflows/ci.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 64db9d16a..1d434f391 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,4 @@ -name: 'Run App , ' +name: 'Run App Liebentritt, Carson' on: [push, pull_request] @@ -6,4 +6,12 @@ jobs: build-and-test: runs-on: ubuntu-latest steps: - - run: echo "Hello, World!" + - uses: actions/checkout@v2 + - name: install dotnet + uses: actions/setup-dotnet@v4 + with: + dotnet-version: '8.x' + - name: build + run: dotnet build + - name: run unit tests + run: dotnet test From 91a4c2ac4d1acd6bf6737718460c3ff65c1099a5 Mon Sep 17 00:00:00 2001 From: cliebentritt4 Date: Tue, 3 Mar 2026 14:12:14 -0600 Subject: [PATCH 2/4] br --- Console/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Console/Program.cs b/Console/Program.cs index 56bb86061..e66fd051d 100644 --- a/Console/Program.cs +++ b/Console/Program.cs @@ -86,6 +86,6 @@ public static double Divide(string x, string y) // Implement this method following a similar pattern as above public static double Power(string x, string y) { - return 0.0; + return double.Parse(x) ^ double.Parse(y); } } From 3b0b76ca9aa8695a8de0e49fd9e42a4a5c9e9a09 Mon Sep 17 00:00:00 2001 From: cliebentritt4 Date: Tue, 3 Mar 2026 14:26:44 -0600 Subject: [PATCH 3/4] build --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1d434f391..b0a29769f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,3 +15,4 @@ jobs: run: dotnet build - name: run unit tests run: dotnet test + From f208eedaee4e11e101f7d54af4161f1423a2b52a Mon Sep 17 00:00:00 2001 From: cliebentritt4 Date: Tue, 3 Mar 2026 14:28:41 -0600 Subject: [PATCH 4/4] build --- Console/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Console/Program.cs b/Console/Program.cs index e66fd051d..e443b5c80 100644 --- a/Console/Program.cs +++ b/Console/Program.cs @@ -86,6 +86,6 @@ public static double Divide(string x, string y) // Implement this method following a similar pattern as above public static double Power(string x, string y) { - return double.Parse(x) ^ double.Parse(y); - } + return Math.Pow(double.Parse(x), double.Parse(y)); + } }