Merge pull request #2147 from boscohyun/refactor/replace-currency-gra… #5244
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, pull_request] | |
jobs: | |
build-and-tests: | |
name: "build-and-tests (${{ matrix.configuration }})" | |
strategy: | |
matrix: | |
os: | |
- ubuntu-20.04 | |
- windows-latest | |
configuration: | |
- Release | |
- DevEx | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 6.0.x | |
- name: Install dependencies | |
run: dotnet restore | |
- name: Build and test | |
run: | | |
dotnet test --configuration ${{ matrix.configuration }} --no-restore |