Skip to content

Update Ddosify selfhosted to 2.2.0 #912

Update Ddosify selfhosted to 2.2.0

Update Ddosify selfhosted to 2.2.0 #912

Workflow file for this run

name: Test
on:
push:
branches:
- master
- develop
pull_request:
branches:
- master
- develop
jobs:
test:
strategy:
matrix:
go-version: [1.18.x, 1.19.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: cd ddosify_engine && go build -race ./...
- name: Test
run: cd ddosify_engine && go test -parallel 1 -short ./...