Support for content-encoding field #548
Workflow file for this run
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: Build | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
env: | |
ARTEMIS_USERNAME: "artemis" | |
ARTEMIS_PASSWORD: "artemis" | |
ARTEMIS_HOST: "localhost" | |
ARTEMIS_PORT: 5672 | |
ARTEMIS_WS_PORT: 80 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: "8.0.x" | |
- name: Run ActiveMQ Artemis | |
run: docker compose up -V -d | |
working-directory: ./test/artemis | |
- name: Build with dotnet | |
run: dotnet build --configuration Release | |
- name: Test with dotnet | |
run: dotnet test --configuration Release | |
windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: "8.0.x" | |
- name: Build with dotnet | |
run: dotnet build --configuration Release | |
- name: Test with dotnet | |
run: dotnet test --filter "FullyQualifiedName!~IntegrationTests" |