update stdlib #656
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: Tests | |
on: | |
- push | |
- pull_request | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: Run test suite | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 7.0.x | |
- uses: edgedb/setup-edgedb@v1 | |
with: | |
server-version: stable | |
instance-name: edgedb_dotnet_tests | |
- run: edgedb instance list | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --no-restore | |
- name: Unit test | |
run: dotnet test ./tests/EdgeDB.Tests.Unit --no-build --verbosity normal | |
# - name: Integration Tests | |
# run: dotnet test ./tests/EdgeDB.Tests.Integration --no-build --verbosity diag |