Merge pull request #1086 from andersjonsson/develop #1073
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: CI | |
on: [push, pull_request, pull_request_review] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
container: | |
image: docker://alpine | |
steps: | |
- uses: actions/checkout@v1 | |
- name: prepare deps | |
run: apk add bash icu-libs krb5-libs libgcc libintl libssl3 libstdc++ zlib curl | |
- name: install sdks | |
run: cd /tmp && curl -L https://dot.net/v1/dotnet-install.sh --output dotnet-install.sh && chmod +x dotnet-install.sh && ./dotnet-install.sh -c 7.0 && ./dotnet-install.sh -c 8.0 && ln -s /github/home/.dotnet/dotnet /usr/bin/dotnet | |
- name: build && test | |
run: dotnet test src/SoapCore.Tests |