Bugfix/heatmap serialization (#5) #28
This file contains hidden or 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
| # This workflow will build a .NET project | |
| # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net | |
| name: build & test | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| pull_request: | |
| branches: [ "master" ] | |
| jobs: | |
| build-and-test: | |
| runs-on: ubuntu-latest | |
| env: | |
| # Necessary for installing OpenSSL 1.1 | |
| DOTNET_SYSTEM_GLOBALIZATION_INVARIANT: 1 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup .NET Core 3.1 | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: '3.1.x' | |
| - name: Install OpenSSL 1.1 | |
| run: | | |
| wget http://security.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.24_amd64.deb | |
| sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2.24_amd64.deb | |
| - name: Setup .NET 8.0 | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: '8.0.x' | |
| - run: dotnet restore | |
| - run: dotnet build --no-restore | |
| - run: dotnet test --no-build --verbosity normal |