From 7177a14cce3698c897e597f23cd31446943bb8a4 Mon Sep 17 00:00:00 2001 From: ConfusedPolarBear <33811686+ConfusedPolarBear@users.noreply.github.com> Date: Fri, 10 Jun 2022 16:25:44 -0500 Subject: [PATCH] Update apt --- .github/workflows/build.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3bb9cf8..3eb008c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,15 +13,23 @@ jobs: steps: - uses: actions/checkout@v3 + - name: Setup .NET uses: actions/setup-dotnet@v2 with: dotnet-version: 6.0.x + - name: Restore dependencies run: dotnet restore + + - name: Update repositories + run: sudo apt-get update + - name: Install fpcalc - run: sudo apt install -y libchromaprint-tools + run: sudo apt-get install -y libchromaprint-tools + - name: Test run: dotnet test --no-build --verbosity normal + - name: Build run: dotnet build --no-restore