Bump Microsoft.IdentityModel.JsonWebTokens from 8.14.0 to 8.15.0 #157
Workflow file for this run
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
| name: .NET | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v3 | |
| with: | |
| dotnet-version: 10.0.x | |
| - name: Run Unit Tests | |
| run: | | |
| dotnet restore | |
| dotnet build | |
| dotnet test test/NosCore.ReverseProxy.Tests -v m | |
| - name: Login to DockerHub | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/login-action@v1.9.0 | |
| with: | |
| username: ${{ secrets.DOCKER_USERNAME }} | |
| password: ${{ secrets.DOCKER_PASSWORD }} | |
| - run: dotnet test --runtime linux-musl-x64 --filter TestCategory=SomethingAsDotnetBuildDoesntWorkAnymore | |
| - name: Build, tag, and push image | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v2 | |
| with: | |
| context: . | |
| file: ./deploy/Dockerfile | |
| push: true | |
| tags: noscoreio/noscore.reverseproxy:latest |