Update packages #41
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: FileHashGenerator | |
on: | |
push: | |
paths: | |
- 'src/**' | |
- '.github/workflows/**' | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build x64 | |
run: dotnet build ./src/FileHashGenerator/FileHashGenerator.Presentation/ -c Release --no-self-contained /p:Platform=x64 | |
- name: Build arm64 | |
run: dotnet build ./src/FileHashGenerator/FileHashGenerator.Presentation/ -c Release --no-self-contained /p:Platform=arm64 | |
- name: Test | |
run: dotnet test ./src/FileHashGenerator/FileHashGenerator.sln -c Release |