Skip to content

fix #83, and change events like https://github.dev/centrifugal/centri… #208

fix #83, and change events like https://github.dev/centrifugal/centri…

fix #83, and change events like https://github.dev/centrifugal/centri… #208

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
# Prevent duplicate builds on internal PRs.
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
environment: test_ci
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dart-lang/setup-dart@v1
- name: Install dependencies
run: dart pub get
- name: Install coveralls
run: sudo gem install coveralls-lcov
- name: Start Centrifugo
run: docker run -d -p 8000:8000 centrifugo/centrifugo:latest centrifugo --client_insecure
- name: Run tests
run: bash tool/test.sh