Update apt

This commit is contained in:
ConfusedPolarBear 2022-06-10 16:25:44 -05:00
parent ced9d41f55
commit 7177a14cce

View File

@ -13,15 +13,23 @@ jobs:
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Setup .NET - name: Setup .NET
uses: actions/setup-dotnet@v2 uses: actions/setup-dotnet@v2
with: with:
dotnet-version: 6.0.x dotnet-version: 6.0.x
- name: Restore dependencies - name: Restore dependencies
run: dotnet restore run: dotnet restore
- name: Update repositories
run: sudo apt-get update
- name: Install fpcalc - name: Install fpcalc
run: sudo apt install -y libchromaprint-tools run: sudo apt-get install -y libchromaprint-tools
- name: Test - name: Test
run: dotnet test --no-build --verbosity normal run: dotnet test --no-build --verbosity normal
- name: Build - name: Build
run: dotnet build --no-restore run: dotnet build --no-restore