Add session.single_socket test. #45
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: Checkout and Test | |
on: | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout nakama-dotnet | |
uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.head_ref }} | |
repository: heroiclabs/nakama-dotnet | |
- name: Checkout nakama-client-testrunner | |
uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.head_ref }} | |
repository: heroiclabs/nakama-client-testrunner | |
- name: Start docker containers for nakama-client-testrunner | |
working-directory: nakama-client-testrunner | |
run: ./docker-compose up -d --wait | |
- name: Run tests for nakama-dotnet | |
working-directory: nakama-dotnet | |
run: dotnet test Nakama.Tests |