Skip to content

Feat/clean leave room process #309

Feat/clean leave room process

Feat/clean leave room process #309

Workflow file for this run

name: Build
# Controls when the workflow will run
on:
push:
branches:
- '*'
pull_request:
branches:
- main
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
# Set up go
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: "^1.19"
- run: go version
# Install dependencies
- name: Install dependencies
working-directory: ./
run: go get
# Run tests
- name: Run tests
working-directory: ./
run: go test ./... -race -timeout 5m