Skip to content

Allow running tests in a docker-compose env & fix failing tests #1

Allow running tests in a docker-compose env & fix failing tests

Allow running tests in a docker-compose env & fix failing tests #1

Workflow file for this run

# every push to a branch: run tests
name: Run tests
on:
pull_request:
types: [opened, synchronize]
jobs:
run_tests:
name: Run Nakama tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Run tests
run: docker-compose -f ./docker-compose-tests.yml up --build --abort-on-container-exit; docker-compose -f ./docker-compose-tests.yml down -v